body{
    background-color: rgb(52, 52, 52);
    color:aliceblue;
    flex: auto;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    align-self: auto;
    min-height: 100vh;
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    color: aliceblue;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border: 1px solid #ccc;
}
a{
    text-decoration: none;
    color: aliceblue;
    background-color: transparent;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    border-radius: 5px;
    height: 50px;
    width: 80px;
    justify-content: center;
    align-items: center;
}
a:hover{
    color: orange;
    background-color: rgba(255, 255, 255, 0.1);
}

section {
    display: flex;
    flex-direction: row;
    flex: 1;
    padding: 1rem;
}

article {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ccc;
    margin: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

footer{
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}