* {
    margin: 0;
}

.header {
    background-color: rgb(115, 173, 111);
    width: 100%;
    height: 18%;
    box-sizing: border-box;
}

.menu {
    background-color: rgb(241, 164, 92);
    width: 100%;
    height: 7%;
    box-sizing: border-box;
    padding-top: 1%;
    font-family: 'Lucida Sans';
}

.main {
    background-color: rgb(188, 232, 185);
    width: 100%;
    height: 65%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 30%;
}

.footer {
    background-color: rgb(115, 179, 111);
    width: 100%;
    height: 10%;
    box-sizing: border-box;
}

.title {
    text-align: center;
    font-family: 'Lucida Sans';
    font-size: 460%;
    padding-top: 2.5%;
}

.menu > ul {
    display: flex;
    justify-content: center;
    gap: 8%;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 150%;
}

.menu > ul > li {
    position: relative;
}

.menu > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(235, 179, 128);
    padding: 0;
    margin: 0;
    list-style: none;
    visibility: hidden;
}

.menu > ul > li > ul > li {
    padding: 5% 10%;
    white-space: nowrap;
}

.menu > ul > li:hover > ul {
    visibility: visible;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2%;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 99%;
    height: 50%;
    position: absolute;
    padding-top: 2%;
    font-family: 'Lucida Sans';
}

.imm1 {
    display: block;
    margin: 0 auto;
    height: 40%;
    padding-top: 0,7%;
    position: relative;
    z-index: 1;
}

.imm {
    position: absolute;
    height: 7%;
    bottom: 20%;
}

.imm-left {
    left: 10%;
}

.imm-center {
    left: 50%;
    transform: translateX(-50%);
}

.imm-right {
    right: 10%;
}
