@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@font-face {
    font-family: Idroid;
    src: url(fontes/idroid.otf);
}

header {
    background-image: linear-gradient(to bottom, #025E73, #011F26);
    padding: 10px 10px 3px 10px;
    text-align: center;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.315);
}
#titulo-site {
    color: white;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.521);
    font: normal 3em 'Bebas Neue', 'cursive';
    margin-bottom: 15px;
}
#paragrafo-topo {
    max-width: 600px;
    margin: auto;
    color: white;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.521);
    font: normal 1.18em Arial;
    text-align: center;    
}
nav {
    text-align: left;
    margin-top: 55px;
}
.botao {
    color: #6dcadd;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    margin: 2px;
    border-radius: 5px;
    transition-duration: .10s;
}
.botao:hover {
    background-color: #025E73;
    color: #011F26;
}
main {
    background-color: white;
    min-width: 280px;
    max-width: 1000px;
    margin: auto;
    padding: 1px 20px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25), -3px 0px 8px rgba(0, 0, 0, 0.25);
    padding-bottom: 20px;
    
}
article > p {
    text-align: justify;
    text-indent: 30px;
}
body {
    background-image: linear-gradient(to top, #E3EBFF, #535c5e);
    background-attachment: fixed;
    margin: 0px;
    padding: 0px;
    font: normal 16px Arial, Helvetica, sans-serif;
    line-height: 2em;
        
}
article > h1 {
    margin-block-start: 0.7em;
    margin-block-end: 0.4em;
    font: normal 1.8em 'Idroid', sans-serif;
    color: #024958;
}
h2 {
    background-image: linear-gradient(to right, #6dcadd,#E3EBFF, transparent);
    color: #025E73;
    font: normal 1.25em 'Idroid', sans-serif;
    padding-left: 10px;
}
.link-externo {
    text-decoration: none;
    font-weight: bold;
    padding: 3px 5px;
    background-color: #c5f4ff;
    color: #024958;
}
.link-externo::after {
    content: '\00A0\1F517'; /* "\00A0" ou "\0020" siginifica espaço sem quebra */
}
.link-externo:hover {
    text-decoration: underline;
}
strong {
    color: #024958;
}

.container>img {
    margin: auto; /* Centraliza a imagem */
    display: block; /* transforma a tag img de inline para bloco para poder centralizar*/
    width : 100%; /*largura em 100% do espaço*/
    height: auto; /* Não precisa, pq a altura já está em auto por padrão */
}
img.pequena {
    width: 100%;
    max-width: 350px;
    margin: auto;
    display: block;
}
/* Deixando o vídeo Responsivo (Copiado da internet)*/

.video-container {
    max-width: 1000px;
    margin: 0px -20px 30px -20px;
    padding: 20px;
    background-color: #025E73;
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    
}

aside {      
    background-color: #E3EBFF;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    
}
aside > p {
    text-indent: 30px;
    text-align: justify;
}
h3  {
    margin: -10px -10px 0 -10px;
    background-color: #024958;
    padding: 10px;
    color: white;
    border-radius: 10px 10px 0px 0px;
    line-height: 20px;
}

ul {
    padding: 0px;
    line-height: 20px;
    columns: 2;
    list-style-type: '\2714\00A0\00A0';
    list-style-position: inside;
}

footer {
    background-color: #024958;
    text-align: center;
    color: white;
    font-size: 0.75em;
    line-height: 25px;
    margin-top: 30px;
    }
.link-rodape {
    font-weight: bold;
    text-decoration: none;
    color: white;
}
.link-rodape:visited {
    font-weight: bold;
    text-decoration: none;
    color: white;
}
.link-rodape:hover {
    font-weight: bold;
    text-decoration: underline;
    color: #6dcadd;
}