html,
body {
    background-color: rgb(61, 30, 119);
    margin: 0;
    height: 100%;
}

a:hover {
    transform: scale(1.2);
}

a {
    display: inline-block;
}

#main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    min-width: min-content;
}

#home {
    text-align: center;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

#home ul {
    list-style-type: none;
    margin: 0;
    padding: 10px;
    background-color: rgb(30, 9, 70);
}

#home li {
    display: inline;
}

#home li a {
    text-decoration: none;
    color: white;
    padding: 5px;
    margin: 5px;
}

#home li a:hover {
    background-color: #570080;
}

#meio {
    text-align: center;
    flex: 1;
}

.lateral {
    height: 100%;
    float: left;
    background-color: rgb(40, 14, 87);
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    color: white;
    font-size: 18px;
    text-align: left;
    display: none;
}

.lateral ul {
    display: contents;
    list-style-type: none;
}

.lateral ul li {
    padding: 8px;
}

.lateral ul li a {
    text-decoration: none;
    color: white;
    padding: 7px;
}

.lateral ul li a:hover {
    background-color: #570080;
}

.conteudo {
    text-align: center;
    margin: auto;
    margin-top: 0;
}

.foto img {
    width: 500px;
    box-shadow: 2px 2px 5px;
    border: 2px solid black;
}

.texto {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    text-shadow: 3px 3px 3px black;
}

.titulo {
    color: white;
    text-shadow: black 5px 5px 3px;
    font-family: cursive;
    font-size: 50px;
}

.rodapé {
    color: white;
    background-color: rgb(30, 9, 70);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 5px;
}

section {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}