@charset "UTF-8";

/* ✓  Site: Tabela de simbolos*/

:root{
    --cor0: #1a5c38;
    --cor1: #3bd47f;
    --cor2: #c0c4b1;
    --corTitulo: #167240;

}

@font-face {
    font-family: 'idroid';
    src: url(fonte/idroid.otf);
}

@font-face {
    font-family: 'bebas';
    src: url(fonte/bebas.ttf);
}
*{
    margin: 0px;
}
header{
    background-image: linear-gradient(to top, var(--cor0), var(--cor1));    
    box-shadow: 0px 25px 15px 10px rgba(0, 0, 0, 0.495);
}

nav{
    background-color: var(--cor0);
    text-align: left;
    padding-block: 9px;
    position: sticky;
    width: 100%;
    top: 0;
    
}

nav > a{
    color: white;
    padding: 9px;
    text-decoration: none;
    border: 0px;
    font-weight: bold;
}

nav > a:hover{
    background-color: rgb(25, 157, 84);
    border-radius: 5px;
    transition: 0.5s;
    color: black;
}

body{
    background-color: var(--cor2);
    font-family: Arial, Helvetica, sans-serif;

}

header > h1{
    color: white;
    text-align: center;
    font-family: 'bebas', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    font-size: 3em;
    text-shadow: 1px 1px 3px black;
    padding-top: 35px;
}

header > p{
    text-align: center;
    color: rgb(194, 255, 222);
    font-size: 1.2em;
    text-shadow: 1px 1px 3px black;
    margin-bottom: 0px;
    padding-bottom: 25px;
}

main{
    background-color: white;
    min-width: 320px;
    max-width: 850px;
    margin-inline: auto;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.495);
}

main > h1{
    font-family: 'idroid', sans-serif;
    color: var(--corTitulo);
    text-align: left;

    margin-left: 25px;
    padding-top: 20px;
    padding-left: 5px;
}

h2{
    background-image: linear-gradient(to right,rgba(59, 212, 128, 0.504), rgba(59, 212, 128, 0.164), rgba(59, 212, 128, 0));
    font-family: 'idroid', sans-serif;
    color: var(--corTitulo);
    text-align: left;
    margin-left: 25px;
    padding-left: 10px;
}

p{
    text-align: justify;
    text-indent: 25px;
    margin: 25px;
}

div > iframe{
    width: 90%;
    height: 90%;
}

.video{
    background-color: var(--cor0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 370px;
}

picture > img{
    display: block;
    margin: auto;
    width: 100%;
}

.imgpqn{
    max-width: 350px;
}

article{
    background-color: rgb(137, 237, 182);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.192);
}

article > p{
    padding-bottom: 10px;
}

article > h3{
    color: white;
    background-color: rgb(19, 118, 64);
    text-align: left;
    padding: 5px;
    border-radius: 15px 15px 0px 0px;
}

article > div > ul{
    list-style-position: inside;
    columns: 2;
    list-style: none;
}

li::before{
    content: '✓';
    padding-inline: 5px;
    font-weight: bolder;
}

footer{
    background-color: var(--cor0);
    text-align: center;
    padding: 9px;
}

.negrito{
    color: rgb(11, 146, 72);
    font-weight: bolder;
}

.links{
    color: rgb(11, 146, 72);
    font-weight: bolder;
    text-decoration: none;
}

.links:hover{
    color: var(--cor1);
    transition: 0.2s;
}

.links::after{
    content: '🔗';
}

.linkcev{
    text-decoration: none;
    color: white;
}

.linkcev:hover{
    color: var(--cor1);
    transition: 0.2s;
}