@import url('fonts.css');
/* styles.css */
body {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    margin: 0;
    font-family: 'Visby', sans-serif;
}

.texts {
    opacity: 0;
    animation: fadeIn .5s .5s forwards;
    color: white;
    font-size: 2rem;
    position: absolute;
    font-weight: 300;
    z-index: 9;
    text-align: center;
    padding: 0 2rem;
}

.texts a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: .5;
}

#glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100dvh;
    background: radial-gradient(167.6% 131.78% at 21.06% -6.45%, rgba(255, 0, 0, 0.20) 3.08%, rgb(0, 0, 0) 100%), radial-gradient(143.07% 133.13% at 74.1% -30.93%, #73EA49 8.16%, #000 62.68%);
    opacity: 0;
    animation: glow 2s 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes glow {
    to {
        opacity: 1;
    }
}