@charset "UTF-8";

@font-face {
    font-family:'Amatic';
    src: url('fonts/AmaticSC-Bold.ttf') format('truetype'), url('fonts/AmaticSC-Regular.ttf') format('truetype');
}

main {
    width: 450px;
    height: 650px;
    padding: 10px;
    background-color: darkgray;
    margin: auto;
    border: 1px solid black;
}

div {
    display: inline-block;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    padding: 10px;
    background-color: aqua;
}

h1#cima {
    background-color: rgb(255, 153, 0);
    font-style: italic;
    border-radius: 10px;    
}

h1.ttlesq {
    background-color: blueviolet;
    font-size: 32px;
}

h1.ttldir {
    font-style: italic;
}

div.baixo {
    display: inline-block;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    padding: 10px;
    background-color: rgb(104, 235, 53);
}

body {
    font-family: 'Amatic',Times, serif;
    font-size: 1em;
}

h1 {
    text-align: center;
    text-decoration: underline;
}
p {
    text-align: justify;
}
