@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@700&display=swap');

*{
    margin: 0;
    padding: 0;
    
    font-family: 'Montserrat', sans-serif;
    
}

.top{
    margin: 0;
    height: 1000px;
    width: 100%;
    background-image: url(brooke-cagle-g1Kr4Ozfoac-unsplash.jpg);
    background-size: contain;
    background-repeat: round;
    text-align: center;
    padding-top: 150px;
    
}


.textmain{
    color: white;
}

.top h1{
    font-size: 50px;
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    
}




button{
    height: 50px;
    width: 180px;
    margin-top: 20px;
    background-color: white;
    
}

.btn-1{
    background-color: #B29B6B;
    color: black;
    font-size: 15px;
    font-weight: bold;
}

.btn-2{
    background-color: #B29B6B;
    color: black;
    font-size: 15px;
    font-weight: bold;;
}

.bottom{
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 200px;
    
}

.bottom-text{
    padding-top: 40px;
    width: 1000px;
    text-align: center;
}
.hover-underline-animation {
    display: inline-block;
    position: relative;
    font-size: 25px;
    font-family: 'Montserrat', serif;
    font-weight: bold;
    margin: 10px;
  }
  
  .hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }



.time{
    position: relative;
}

button:hover{
    background-color: #F0D8A6;
}