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

body {

    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: black;
}

.header {
    background-color: rgb(13, 13, 13);
    display: flex;
    align-items: center;
    height: 120px;
    border: solid 5px rgb(30, 30, 159);
    padding: auto;
    width: 100%;
}

.header>nav {
    width: 100%;
    height: 100%;
    display: flex;
    border: solid 5px rgb(202, 202, 47);
    justify-content: space-between;
    align-items: center;
}

.icon {
    background-color: rgb(55, 148, 75);
    width: 10%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    border: solid 5px green;
}

.nav {
    background-color: rgb(55, 148, 75);
    width: 40%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: solid 5px green;
}



.nav>a {
    background-color: orange;
    width: 30%;
    height: 90%;
    border: solid 5px rgb(128, 51, 0);
}

main {
    border: solid 5px orange;
    min-height: 900px;

}

main>section {
    border: solid 5px blue;
    min-height: 550px;
    display: flex;

}

.section1>div {
    border: solid 5px green;
    min-height: 550px;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20%;
    align-items: center;
    padding: 40px;
}

figure {
    border: solid 5px red;
    width: 190px;
    height: 190px;
}

.fig2 {
    border: solid 5px red;
    width: 40%;
    height: 50%;
}

.section2>.figure1 {
    border: solid 5px green;
    min-height: 450px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    padding: 30px;
}

#fig3 {
    width: 50%;
}

#fig4 {
    width: 90%;
}

.section2>.figure2 {
    border: solid 5px green;
    min-height: 450px;
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.figure2>figure {
    height: 50%;
}

.footer {
    border: solid 5px rgb(0, 64, 255);
    height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2%;
    padding-right: 2%;
}

.footer>div {
    border: solid 5px green;
    height: 80%;
    width: 20%;


}