body{
    background-color: black;
}

#header{
    color: white;
    font-family: "Doto";
    font-size: 3rem;
    min-height: 20%;

}

#linktree{
    min-height:60%;
    text-align:center;
    color: white;
    font-family: "Doto";
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

#footer{
    min-height:20%
}

a{
    color:white;
}

.fade-in{
    animation-delay: 4s;
    opacity: 0;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 2s;  
    animation-fill-mode: forwards;

}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

