@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'REM', Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

/** BODY **/

@media (min-width: 800px) {

    body {
        width: 800px;
        margin: auto;
        background-color: #424242;
        box-shadow: 0px 0px 5px 1px #000;

    }
}


header {
    background-color: #eee;
    padding: 30px;
}

header > a > img, footer > a > img {
    width: 40px;
    padding-bottom: 20px;
}

header h1 {
    font-size: 1.5em;
    font-weight: 200;
    color: #f39232;
    text-transform: uppercase;
}

header h2 {
    font-size: 1.5em;
    font-weight: 700;
    color: #424242;
}

header a {
    font-size: 0.8em;
    font-weight: 300;
    color: #f39232;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

main {
    background-color: #fff;
    padding: 20px;
}

div.titulo {
    display: inline-block;
    width: 20%;
    vertical-align: top;
    padding: 10px;
    text-align: right;
}

div.titulo h1 {
    font-size: 0.8em;
    color: #424242;
    text-transform: uppercase;
    font-weight: 300;
}

h2.school {
    font-size: 1em;
    color: #f39232;
    font-weight: 600;
}

h2.course {
    font-size: 1em;
    color: #424242;
    font-weight: 600;
}

div.listas {
    display: inline-block;
    padding: 10px;
    line-height: 1.4em;
    color: #424242;
    font-weight: 300;
    width: 60%    
}

ul {
    padding: 10px 20px;
}

div.linha {
    height: 1px;
    width: 50%;
    background-color: #f39232;
    margin: auto
}

@media (max-width: 700px) {
    div.titulo, div.listas {
        display: block;
        width: 100%;
        text-align: left;
    }
    div.titulo {
        border-bottom: 1px #f39232 solid;
        margin: 10px;
    }
}

footer {
    background-color: #fff;
    padding: 30px 30px 0 30px;
}