@charset "UTF-8";



* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: mine;
    src: url('fonts/Minecrafter.Reg.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: titulo;
    src: url('fonts/JAi_____.TTF') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: subtitulo;
    src: url('fonts/Garet-Book.ttf') format('truetype');
    font-weight: normal;
}
:root {
    --cor01 : #BFC3BA;
    --cor02 : #A9ACA9;
    --cor03 : #60495A;
    --cor04 : #3F3244;
    --cor05 : #2F2235;
}
body {
    background-color: var(--cor01);
}

header {
    background-image: linear-gradient(to bottom, var(--cor03), var(--cor04));
    height: 100px;
    padding: 30px;
    text-align: center;
    color: white;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.411);
    
}

header > h1 {
    margin-top: 30px;
    font-family: mine, Arial, sans-serif;
    font-weight: normal;
    font-size: 3em;
}
nav {
    background-color: var(--cor04);
    height: 30px;
    color: white;
    text-align: center;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.356);
}
nav > a {
    margin-right: 15px;
    margin-left: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border: 3px solid var(--cor05);
    background-color: var(--cor04);
    padding: 6px;
    border-radius: 5px;
}


nav > a:hover {
    background-color: var(--cor01);
    color: var(--cor05);
    transition: .5s;
}
main {
    background-color: white;
    padding: 30px;
    border-radius: 0px 0px 10px 10px;
    max-width: 700px;
    margin: auto;
    line-height: 25px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.267);
    min-height: calc(100vh - 330px);
}
main > h1 {
    margin-bottom: 40px;
    font-family: titulo, 'Courier New', Courier, monospace;
    margin-top: 30px;
    font-size: 3em;
    font-weight: normal;
    line-height: 50px;
}
main > h2 {
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 2em;
    font-family: subtitulo, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: normal;
    background-color: var(--cor01);
    padding: 5px;
    border-radius: 10px;
    text-align: center;
}

main  p {
    line-height: 25px;
    margin-top: 20px;
    font-size: 1.5em;
    text-align: justify;
    text-indent: 10px;
}
main strong {
    color: var(--cor05);
    font-style: italic;
    font-weight: normal;
}
main a {
    color: var(--cor04);
    text-decoration: none;
    font-weight: bold;

}

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

li.rede {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    padding-left: 10px;
    text-align: center;
}

ul.redes {
    columns: 2;
    list-style: none;
    padding: 10px;
    background-color: var(--cor01);
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.267);
}
ul.sites{
    columns: 2;
    list-style: none;
    list-style-type: '⚊ ';
    padding: 10px;
    list-style-position: inside;
    background-color: var(--cor01);
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.267);
}

footer {
    background-color: var(--cor05);
    color: white;
    text-align: center;
    padding: 20px;
    height: 20px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.356);
}

footer a {
    color: var(--cor02);
    text-decoration: none;
    
}

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

p#sobre {
    display: inline-block;
    max-width: 400px;
    width: 400px;
    margin-top: 0px;
    vertical-align: middle;
}
img#foto {
    padding-left: 10px;
    display: inline-block;
    height: 200px;
    width: 150px;
    vertical-align: middle;
}

div#sobree {
    margin: auto;
    max-width: 600px;
    padding: 0px;
    text-align: center;
    justify-items: center;
}

img.icon {
    display: inline-block;
    height: 25px;
    width: 25px;
    border-radius: 6px;
}

p.home{
    text-indent: 0px;
}

h1#titulo1 {
    display: block;
}

h1#titulo2 {
    display: none;
}

@media (max-width: 640px) {
  p#sobre {
    width: 50%; 
  }
  img#foto {
    height: 45%;
    width: 45%;
  }

  nav > a {
    margin-right: 20px;
  }
}

@media (max-width: 560px) {
    ul.sites {
        columns: 1;
    }
}

@media (max-width: 500px) {
    ul.redes {
        columns: 1;
    }
    p#sobre {
        display: block;
        width: 75%;
    }
    img#foto {
        margin-top: 10px;
        display: block;
        width: 200px;
        height: 266px;
    }
}

@media (max-width: 740px) {
    h1#titulo1 {
    display: none;
    }
    h1#titulo2 {
    display: block;
    }
}