*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body{
    background-color: #f4f7f6;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow: hidden;
}

header{

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

}

.logo{
    color: #333;
    margin-left: 30px;
    cursor: pointer;
    font-size: large;
}

a{
    padding: 5px;
    background-color: #b4f7f1;
    border-radius: 8px;
    text-decoration: none;
    color: #635d5d;

}
a:hover{
    background-color: white;
}
.navigate{

    display: flex;

    align-items: center;

    gap: 30px;

}

.user{

    border: none;

    padding: 10px 20px;

    color: rgb(1, 78, 78);

    background-color: rgb(212, 255, 241);

    margin-right: 50px;

    border-radius: 10px;

    cursor: pointer;

}

.hero{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 80px 10%;

}

.left{

    flex: 1;

}

.left h2{

    font-size: 2.8rem;

    color: #2d3436;

    line-height: 1.2;

}

.text{

    color: #2d3436;
}

.left p{

    font-size: 1.1rem;

    color: #242b2a;

    margin: 0 0 35px 0;
    

    

}

.book{
    background-color: #11a9c1;
    color: white;
    border: 4px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;

}

.book:hover{

    transform: translate(-2px);
    background-color: #b4f7f1;

}

.right{

    flex: 1;

    display: flex;

    justify-content: center;

}

.right img{

    max-width: 100%;
    border: 1px solid black;
    height: 400px;

}
.highlight{
    color: #11a9c1;

}
@media (max-width: 1024px){
    .hero{
        flex-direction:column;
    }
    .right{
        width:95%;
    }
}

