body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
@font-face {
    font-family: title;
    src: url("./BebasNeue-Regular.ttf");
}
* {
    font-family: title;
    margin: 0;
    color: #229b44;
    z-index: 1;
}

header {
    width: 60%;
    max-width: 1200px;
    background-color: white;
    height: 100px;
    margin: 0 auto;
    z-index: 5;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: wrap;
}
  
.logo {
    width: 200px;
}
  
.header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
  
.header-link {
    font-size: 20px;
    text-decoration: none;
    color: #229b44;
    transition: color 0.2s;
    white-space: nowrap;
}

.header-link:hover {
    color: #33cf5f;
    border-bottom: solid 3px #33cf5f;
}


.section-title {
    font-size: 50px;
    margin-left: 50px;
    margin-bottom: 50px;
}

footer {
    background-color: #333333;
    width: 100vw;
    height: 150px;
    display: flex;
    margin-top: auto;
}
.logo-footer {
    width: 200px;
    height: 80px;
    filter: grayscale(100%);
    padding-top: 20px;
    margin-right: 20px;
}
.footer-box {
    padding: 20px;
    box-sizing: border-box;
    align-items: end;
    margin-left: auto;
}
.dest {
    color: #3ab0f5;
}
.footer-box2 {
    padding: 20px;
    box-sizing: border-box;
    align-items: end;
    margin-left: auto;
    display: flex;
}
.footerP {
    color: gray;
    font-size: 20px;
    text-align: center;
    margin: 20px;
}
.footer-icon {
    width: 40px;    
    margin: 20px;
    margin-top: auto;
    filter: invert(50%);
}
a {
    text-decoration: none;
}
.selected {
    background-color: #369446;
    padding: 10px;
    border-radius: 10px;
    color: white;
}

.wza-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    gap: 10px;
}
.wza {
    width: 70px;
    height: 70px;
}
.wza-description {
    box-sizing: border-box;
    margin-top: 40px;
    padding: 10px;
    transform: translate(0,-50%);
    color: rgb(68, 68, 68);
    font-size: large;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.479);
    border-radius: 10px;
    display: none;
}

.wza-container:hover .wza-description {
    display: block;
}

@media (max-width: 900px) {
    .wza-container {
        bottom: 50px;
    }
    .wza {
        width: 50px;
        height: 50px;
    }
    .footer-box2 {
        display: block;
        margin: 0;
    }
    .footer-icon {
        width: 20px;
    }
    .header-link {
        font-size: 15px;
    }
    .logo-footer {
        width: 20%;
        height: 25%;
        margin: 0;
    }
    .footer-box {
        margin: 0;
    }
    .section-title {
        font-size: 30px;
        margin-bottom: 0px;
    }
    .footerP {
        font-size: 18px;
    }
}
@media (max-width: 630px) {
    header {
        width: 100%;
        display: block;
        box-sizing: border-box;

    }
    .selected {
        padding: 5px;
    }
    .footerP {
        font-size: 15px;
    }
    .footer-box2 {
        display: block;
    }
    .footer-icon {
        margin: 10px;
    }
}

@media (max-width: 500px) {
    .header-link {
        font-size: 15px;
    }
    .header-container {
        gap: 15px;
    }
    .footerP {
        font-size: 10px;
    }
}