* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    height: 100%;
}
html {
    font-size: clamp(10px, 1em, 1.5rem);
}
body {
    overflow-y: scroll;
    overflow-x: hidden;
    height: clamp(90vh, 100vh, 100%);
    width: clamp(90vw, 100vw, 100%);
    padding: 1px;
    background-color: #4D606E;
    font-family: "Poppins", sans-serif;
}
header {
    height: auto;
    padding: 20px;
    text-align: center;
    background-color: #4D606E;
}
nav {
    display: table;
    height: auto;
    width: 100%;
    padding: 5px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

main {
    display: grid;
    min-height: 100vh;
    height: auto;
    grid-template-columns: 100vw;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
        "first"
        "second"
        "third"
        "fourth"
        "fifth";
    grid-gap: 0px;
    padding: 0px;
    margin: 0px;
    background-color: white;
    overflow: hidden;
}
div {
    border-top-color: grey;
    border-top-style: solid;
    border-top-width: 1px;
}
article {
}
section {
    padding: 1%;
}
aside {
    display: none;
}
footer {
    height: auto;
    padding: 10px;
    text-align: center;
    background-color: #4D606E;
}



