body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background: #FEFEFE;
}

header, footer {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #02111B;
    color: #FEFEFE;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

menu:hover {
    cursor: pointer;
}

.mainDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    width: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 4em;
    align-items: center;
    justify-content: space-around;
    margin-top: 4em;
    margin-bottom: 4em;
}

.homeIcon {
    width: 2em;
    height: 2em;
    transition: 0.3s;
}

.homeIcon:hover {
    transform: translateY(-0.5em);
}

.textMenu {
    transition: 0.3s;
}

.textMenu:hover {
    transform: translateY(-0.5em);
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
}