.header {
    background-color: aquamarine;
    border-radius: 1em;
    color:white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 500px;
    height: auto;
}

.mainside{
    text-align: center;
}

.main {
    height: 100%;
}

li {
    display: inline;
}

li a {
    display:inline-block;
    border-radius: 1em;
    padding: 0.5em;
    background-color: cadetblue;
}

li a:hover{
    background-color: blanchedalmond;
}

.footer {
    bottom: 0;
    border-radius: 1em;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: #333;
    color: white;
    text-align: center;
    display: grid;
    place-items: center;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 1em;
    gap: 2em;
}

.center {
    text-align: center;
}