*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #fee3e0;
    font-family: 'Quicksand' , sans-serif;
}

.header{
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%; */

    padding: 20px 100px;
    /* background-color:#F0EFF4; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* z-index: 100; */
}

.center-header{
    text-align: center;
}

.port{
    font-size: 60px;
    color: #F26659;
    text-decoration: none;
    font-weight: 900;
}

.navbar a{
    position: relative;
    font-size: 20px;
    color: #F26659;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #F26659;
    transition: 0.3s;
}


.navbar a:hover::before{
    width: 100%;
}

h1{
    font-size: 35px;
    color: #8CA9D3;
    margin: 30px;
    font-weight: 900;
}

h2{
    font-size: 27px;
    color: #8CA9D3;
    margin: 30px;
}

p{
    text-align: center;
    font-size: 25px;
    margin: 30px;
    color: #b07016;

}

a{
    font-size: 25px;
    text-decoration: none;
    color: #b07016;
    font-weight: 500;
    text-align: center;
}

a:hover {
    color: #FF6347;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
}

.image-container img {
    height: 300px;
    width: 400px;
    margin: 10px;
    display: block;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.contact-item {
    display: flex;
    align-items: center;
}

