body{
    margin:0px;
    padding:0px;
    font-family: "Contrail One", sans-serif;
}
.hero {
    position: relative;
    min-height: 82.5vh;
    
    /* Background */
    background-image:
        linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 10%,
        rgba(0, 0, 0, 0.85) 100%
        ),
        url("/images/mar080623_944_DimitriusSouza_Seminar_Upper.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* -------- */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}

.hero h1 {
    position: absolute;
    color: rgb(242, 242, 242);
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    animation: spacingReveal 3s ease forwards;
}
.hero h3{
    position: absolute;
    top: 55%;
    color: rgb(242, 242, 242);
    font-size: 20px;
    font-weight: lighter;
    margin: 0; 
    animation: spacingReveal 3s ease forwards;
}
.hero .home-btn{
    position: absolute;
    top: 50%;
    animation: popup 1s ease forwards;
}
.hero a{
    display: inline-block;
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 15px;
    border: 1px solid;
    /* border-radius: 10px; */
    margin: 150px;
    top: 100px;
    transition: 0.5s ease;
}
.hero a:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}

@media (max-width: 1050px){
    .hero a{
        margin: 50px;
    }
    .hero .home-btn{
        top: 60%
    }
}
@keyframes popup {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 1;
  }
  75%{
    transform: scale(1, 0.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes spacingReveal {
  from {
    opacity: 0;
    letter-spacing: 20px;
  }

  to {
    opacity: 1;
    letter-spacing: normal;
  }
}