* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #0049ad;
    box-shadow: inset 0 0 20px #0049ad;
}

::-webkit-scrollbar {
    width: 5px;
    background: rgba(5, 5, 5, 1);
}

body {
    animation: fadein 2.5s;
    display: flex;
    justify-content: center;
    padding: 30px;
    align-items: center;
    background-color: black;
    overflow-x: hidden;
    overflow-y: auto;
}

.background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg.jpg') no-repeat top center/cover;
    z-index: -1;
}

@keyframes fadein {
    0% {
        mask: linear-gradient(90deg, #000 25%, #000000e6 50%, #00000000) 150% 0 /
            400% no-repeat;
        opacity: 0.2;
    }
    100% {
        mask: linear-gradient(90deg, #000 25%, #000000e6 50%, #00000000) 0 /
            400% no-repeat;
        opacity: 1;
    }
}

#box {
    padding: 10px;
    font-size: 8px;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 38, 255, 0.4) 0px 0px 0px 2px,
        rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
        rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    border-radius: 20px;
    color: white;
    text-align: left;
    flex-direction: column;
    background-color: white;
}

#box h1 {
    font-size: 10px;
}

#box p span {
    color: rgb(184, 0, 0);
}

h1 {
    margin-bottom: 30px;
}

p {
    margin: 20px 20px 0 20px;
}

h1, p {
    color: black;
}

#footer {
    font-size: 16px;
    font-style: italic;
    text-align: center;
}

#footer a {
    color: black;
}

.logos {
    position: fixed;
    bottom: 0;
    right: 0%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px;
    z-index: 9999;
}

#logo-img {
    border-radius: 999px;
    box-shadow: #0049ad 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
    cursor: pointer;
}

#logo-whats {
    border-radius: 999px;
    box-shadow: #0ead00 0px 1px 4px, rgb(0, 138, 11) 0px 0px 0px 3px;
    cursor: pointer;
    padding: 0;
}

#logo-disc {
    border-radius: 999px;
    box-shadow: #0300ad 0px 1px 4px, rgb(0, 71, 138) 0px 0px 0px 3px;
    cursor: pointer;
    padding: 0;
}

.footer {
    text-align: center;
    color: rgb(5, 161, 0);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    #box h1 {
        font-size: 15px;
    }
    #box {
        width: 600px;
        font-size: 12px;
    }
}

@media screen and (max-width: 750px) {
    .background-fixed {
        background: url('../img/bg-rt.jpg') no-repeat top center/cover;
    }
}
