body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: aliceblue;
}

#logo-container {
    width: 60px;
    height: 60px;
    margin-left: 50px;
    background-image: url("jojobrico.png");
    background-size: contain;
}

#links-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* gap: 50px; */
}

.page-link {
    text-align: center;
    text-decoration: none;
    color: black;
    margin: 0px 20px;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(164, 245, 186);
    height: 300vh;
}

#footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: antiquewhite;
}