*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html , body{
    height: 100%;
    width: 100%;
}

.main{
    height: 100%;
    width: 100%;
}

.hero{
    height: 90vh;
    width: 100vw;
    background-image: url(background.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.nav{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px  ;
    border-bottom: 2px solid white;
    color: white;
}

.part1{
    display: flex;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.part1 img{
    height: 55px;
}

.part1 h2{
    font-weight: 500;
}

.part2{
    display: flex;
    gap: 30px;
}

.part2 p:hover{
    text-decoration: underline;
    cursor: pointer;
    color: #f4575e;
}

.text{
    position: absolute;
    color: white;
    width: 40%;
    top: 40%;
    left: 5%;
}

.text h1{
    font-size: 80px;
}

h1 span{
    color: #f4575e;
}

.text p{
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn button{
    padding: 15px 30px;
    background-color: #f4575e;
    color: white;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    margin-right: 20px;
    border: 2px solid #f4575e;
}

button:hover{
    transition: .4s ease-in-out;
    box-shadow: 0 12px 16px 0 rgba(253, 108, 108, 0.705),0 17px 50px 0 rgb(245, 110, 110);
}

.about{
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    background-color: #faf7e4;
}

.image{
    height: 300px;
    overflow: hidden;
}

.image img{
    height: 100%;
    border-radius: 25px;
}

.abouttext{
    width: 600px;
}

.abouttext button{
    padding: 10px 30px;
    background-color: #f4575e;
    color: white;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    margin-right: 20px;
    border: 2px solid #f4575e;
    margin-top: 20px;
}

.placesdiv{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    background-color: #151517;
    justify-content: center;
}

.places{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 60px;
}

.place{
    height: 430px;
    width: 290px;
    border: 2px solid white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 5px;
    overflow: hidden;
}

.place img{
    border-bottom-right-radius: 25px;
    border-bottom: 3px solid white;

}

.place h1{
    color: #f4575e;
}

.place p{
    text-align: center;
}

.place button{
    padding: 10px 20px;
    background-color: #151517;
    color: white;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    margin-right: 20px;
    border: 2px solid #f4575e;
    margin-top: 20px;
}

.footer{
    width: 100%;
    background-color: #faf7e4;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 50px;
    line-height: 25px;
}

.footer h1{
    color: #f4575e;
}

.div4{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div4 i{
    font-size: 30px;
    color: #f4575e;
    margin-right: 20px;
}

.ending{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: firebrick;
    color: #faf7e4;
}

