body {
    background-color: #050423;
    height: 100%;
    padding: 0;
    margin: 0;
    padding-bottom: 5rem;
}

body::-webkit-scrollbar {
    display: none;
}


@font-face {
    font-family: syf;
    src: url('/Hanged\ Letters.ttf');
}

@font-face {
    font-family: guziki;
    src: url('/KGBlankSpaceSolid.ttf');
}

#title {
    background: url('tapeta.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
}

.test {
    height: 1000vh;
}

h1 {
    font-size: 8vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: syf;
    margin-top: 0;
    color: rgb(10, 44, 88);
    mix-blend-mode: overlay;
}

#urls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
}

#urls>div {
    height: 3rem;
    width: 40rem;
    background: transparent;
    align-self: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 1rem;
}

#urls>div>a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: #050423;
    width: 99%;
    height: 95%;
    z-index: 2;
    border-radius: 1rem;
    align-items: center;
    display: flex;
    justify-content: center;
    font-family: guziki;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.5s ease;
}

#urls>div>a:hover {
    background: linear-gradient(0, #050423 0%, #000000 100%);
    transform: translate(-50%, -50%) scale(0.95);
}

#urls>div:after {

    --gradientHeight: 10000rem;
    --gradientWidth: 10000rem;

    content: '';
    position: absolute;
    height: var(--gradientHeight);
    width: var(--gradientWidth);
    top: calc((100% - var(--gradientHeight)) / 2);
    left: calc((100% - var(--gradientWidth)) / 2);
    ;
    background:
        conic-gradient(#FF6D1B, #FFEE55, #5BFF89, #4D8AFF, #6B5FFF, #FF64F9, #FF6565);
    background-size: cover;
    background-position: center center;
    background-clip: border-box;
    animation: spinny 2s infinite linear;
    z-index: 0;
}

@keyframes spinny {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#bottom-button {
    position: fixed;
    width: 3rem;
    right: 1rem;
    bottom: 1rem;
    animation: pop 2s ease infinite;
    
}

@media (max-width: 600px) {
    #bottom-button {
        top: 1rem;
    }
    #urls>div {
        width: 25rem;
    }
}