/* Configuração básica de todas as páginas */
/* Carregando a fonte utilizada novamente */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Setando configuações base para toda a página */
* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', sans-serif, 'Sue Ellen Francisco', 'Segoe UI', Tahoma, Verdana;
}

/* Configurações do Título */
#head h1 {
    background-color: gray;
    color: #fff;
    width: 100%;
    height: 10%;
    padding: 0.5%;
    text-align: center;
    font-size: 1.5rem;
}

/* Configurações da barra de menu */
#menu {
    width: 100%;
    background-color: black;
    top: 10%;
    margin-bottom: 2.5%;
}

#menu ul {
    max-width: 700px;
    list-style: none;
    background-color: black;
    font-size: 0.5rem;
}

#menu ul li {
    display: inline;
    background-color: black
}

#menu ul li h2 {
    display: inline;
}

#menu ul li h2 a {
    display: inline-block;
    padding: 1rem;
    text-decoration: none;
    color: white;
    background-color: black;
    transition: background .5s;
}

#menu ul li h2 a:hover {
    background-color: gray;
}

/* Ajustando menu para obter responsividade na página */
@media screen and (max-width : 650px) {
    #menu ul {
        list-style: none;
        background-color: black;
        display: contents;
    }

    #menu ul li {
        background-color: black;
        display: flex;
        font-size: 0.7rem;
    }

    #menu ul li h2 a {
        display: inline-block;
        padding: 0.3rem;
        text-decoration: none;
        color: white;
        background-color: black;
        transition: background .5s;
    }
}

/* Configurações do rodapé */
footer {
    width: 100%;
    position: fixed;
    bottom: 0px;
    background-color: black;
    padding-left: 12%;
    padding-right: 12%;
}

footer a img {
    max-height: 2.65rem;
    float: right;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background-color: black;
}

footer p {
    float: left;
    background-color: black;
    color: white;
    margin-top: 1rem;
    font-size: x-small;
}

#linkedin {
    margin-right: 0;
}