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

.header {
    position: sticky;
    z-index: 1;
    background-color: rgba(107, 188, 145, .7);
    height: 3rem;
    transition: max-width .7s ease, margin .7s ease, padding .7s ease;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: block; /* Show the toggle menu icon */
}

#menu-toggle {
    display: none; /* Hide the checkbox input when menu is displayed */
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-links {
    display: flex;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    width: 70px;
    height: 49px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*color: yellowgreen;*/
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.nav-links li {
    list-style: none;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: greenyellow;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD166;
}




/* Styles for the modal */
#myModal{
    display: none;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    background: rgba( 255, 255, 255, 0.4 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2px );
    -webkit-backdrop-filter: blur( 2px );
    border: 2px solid rgba( 255, 255, 255, 0.18 );
}

/* Style for the contact icons container */
.contact-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

/* Style for individual contact icons */
.contact-icons a {
    display: inline-block;
    margin: 10px;
    transition: transform 0.5s;
}

.contact-icons img {
    width: 50px;
    height: 50px;
    /*!*border-radius: 50%;*!*/
    /*background: transparent;*/
    /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);*/
}

.contact-icons a:hover {
    transform: scale(1.5);
}

