@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin: 0px;
    background-color: rgb(20, 20, 20);
}

a {
    color: rgb(137,36,36,0.739);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    transition: 0.3s;
    color: rgb(137,36,36);
}

span {
    font-size: 3vh;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIndol;
    animation-name: fadeIndol;
}

@-webkit-keyframes fadeIndol {
    0% {
       opacity: 0;
       top: 40%;
    }
    100% {
       opacity: 1;
       top: 50%;
    }
}
 
 @keyframes fadeIndol {
    0% {
       opacity: 0;
       top: 40%;
    }
    100% {
       opacity: 1;
       top: 50%;
    }
}