/* @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{
    height: 550px;
    width: 100%;
    background-image: url("bg.jpg");
    background-size:cover;
    background-repeat: no-repeat;
}

.nav{
    display: flex;
    flex-direction: row-reverse;
    padding-top: 15px;
}

li{
    display: inline;
    
    margin-right: 50px;
}

.top h1{
    font-size: 50px;
    margin: 40px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.top p{
    margin-left: 40px;
    width: 450px;
}

.btn-container{
    margin-left: 40px;
}

button{
    height: 50px;
    width: 180px;
    margin-top: 20px;
    background-color: #F0D8A6;
    
}

.btn-1{
    background-color: #F0D8A6;
    border: 3px solid #F0D8A6;
    font-size: 15px;
    font-weight: bold;
}

.btn-2{
    background: transparent;
    border: 3px solid #F0D8A6;
    color: #F0D8A6;
    font-weight: bold;
}

.bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 200px;
}

.bottom-heading{
    font-size: 25px;
    font-family: 'Hepta Slab', serif;
    font-weight: bold;
    margin: 10px;
}

.bottom p{
    width: 500px;
}
button:hover{
    background-color: #fcac00;
}