@font-face {
    font-family: "Firacode";
    src: url("./static/fonts/FiraCode-VF.woff");
}

body{
    background-color: #1e1e1e;
    text-align: center;
    color: white;
    font-family: Firacode;
    /* background-image: url(./icon/sunrise.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover; */
    background: rgb(96,48,18);
    background: linear-gradient(0deg, rgba(96,48,18,1) 0%, rgba(96,48,18,1) 0%, rgba(8,7,25,1) 60%, rgba(12,11,29,1) 100%);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97vh;
    transform: translateY(100vh);
    opacity: 0;
    overflow-y: hidden;
    animation: flyUp 1s forwards;
    animation-delay: 0.3s;
}

#details{
    border: 1px solid rgba(255, 255, 255, 0.29);
    padding: 25px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.11);
    color: white;
    width: 750px;
    opacity: 0;
    transform: translateY(100vh);
    animation: flyUp 1s forwards;
    animation-delay: 0.3s;
}

#details p{
    text-align: center;
}

#details a{
    color: rgba(255, 255, 255, 0.74);
    transition: 0.2s;
}

#details a:hover{
    color: white;
}

.bold{
    font-weight: bold;
}

#footer{
    opacity: 0;
    color: rgba(255, 255, 255, 0.143);
    display: block;
    position: fixed;
    bottom: 0px;
    font-weight: bold;
    animation: footerAppear 2s forwards;
    animation-delay: 1.5s;
}

#headerDetails{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

img{
    height: 40px;
    margin-right: 10px;
}



/* animations below*/

@keyframes flyUp {
    from {
      opacity: 0;
      transform: translateY(100vh);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

@keyframes footerAppear {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}