@font-face {
    font-family: Titulo;
    src: url('fonts/Starbim.ttf');
}


* {
    box-sizing: border-box;
}

body {
    background-image: url("img/ISOX7A6FXLLTHVXKN5ZTGZ6HSWUSDOFS.gif");

    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    color: plum;
    text-align: center;

}

h1,h2,h3 {
    font-family: Titulo;
    font-weight: normal;
}

h1 {
    font-size: 3.5rem;
}

h3 {
    color: greenyellow;
}

img {
    /* border: 2px solid plum; */
    max-width: 100%;
    height: auto;
}

a {
    color: mediumturquoise;
    text-decoration: none;
}

b {
    color: greenyellow;
}

.site {
    width: min(880px, 100%);
    /* min-height: 100vh; */
    margin: 0 auto;

    display: grid;
    grid-template-columns: 200px 1fr;
}

.menu ul {
    font-size: 1.5rem;
    list-style: none;
    padding: 0;
    text-align: left;
}

.menu ul li {
    margin: 15px 0;
}

.conteudo {
    overflow-y: auto;
    height: 550px;
    padding: 0 30px;
}