@font-face {
    font-family: 'Monocraft';
    src: url('fonts/Monocraft.woff2') format('woff2'),
    url('fonts/Monocraft.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #393054;
    font-family: 'Monocraft', sans-serif;
}

h1, h2, h3, h6 {
    color: #d8d0e1;
}

h3 {
    font-size: 1.3rem;
}

p, li {
    color: #cecbd2;
}

.row {
    padding: 50px 10px 10px;
}

.block {
    padding: 15px;
    background-color: #594f81;
}

.block-holder {
    padding: 10px;
    background-color: #282338;
    max-width: 800px;
    margin: 5px;
}

.col-12, .col-sm-12 {
    align-content: center;
    padding: 0; !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a {
    word-break: break-all;
    font-size: 10px;
}


.links a {
    background-color: #ff87c5;
    color: #282338;
    padding: 6px;
    border-radius: 4px;
    font-size: 1.2rem;
    text-decoration: none;
}

.links a:hover {
    background-color: #FF9ED2;
}

#notification {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}
#notification.show {
    visibility: visible;
    opacity: 1;
}

.logo-link {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 1000;
}

.logo-image {
    width: 100px;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .logo-link {
        display: none;
    }
}
