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

.bgHeader {
    background-image: url("../assets/bg-image.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
} 

#logo {
    display: block;
    margin: 5px auto;
    max-width: 45%;
    overflow: hidden;
}

.menu {
    font-family: 'Poppins', sans-serif;
    display: flex;
    position: relative;
    margin-top: 2%;
    justify-content: center;
    gap: 15px;
} 
 
.menu a {

    font-weight: 500;
    text-decoration: none;
    color: #1A3E4B;
    font-size: 2rem;
    align-items: center;
    margin-left: 5%;
}