/*FONTES*/
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Rammetto+One&display=swap');

@font-face {
    font-family: 'Mojangles';
    src: url(../Fontes/Mojang-Regular.woff2);
}

/*nome: font-family: "Rammetto One", sans-serif;*/
/*nome: font-family: "Comic Neue", cursive;*/
/*/FONTES*/
/*TODO O SITE*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../Imagens/Sugar Cane.png");
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

a{
    color: rgb(207, 233, 255);
    text-decoration-line: none;
}
/*/TODO O SITE*/
/*BODY - Header*/
section {
    align-items: center;
}

header {
    width: 10vw;
    height: 22vh;
    background-color: darkblue;
    border: 10px solid transparent;
    border-image: linear-gradient(to bottom, darkblue, black) 1;
    margin-top: 5vw;
}

header a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding-top: 5%;
    font-size: 25px;
    font-family: "Comic Neue", cursive;
}

header h1 {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding-top: 5%;
    font-size: 25px;
    font-family: "Rammetto One", sans-serif;
}

/*/BODY - Header*/
/*/BODY - Início do site de verdade*/


#corpo {
    color: aliceblue;
    text-align: center;
    padding-top: 5%;
    font-size: 20px;
    width: 70%;
}

#corpo h1,
h2 {
    font-family: 'Mojangles';
    font-weight: 100;
    background-color: darkgreen;
    border: dashed 10px;
    border-style: ridge;
    border-image: linear-gradient(to bottom, rgba(0, 90, 0, 0.81), rgb(0, 77, 0)) 1;
}

#corpo h3 {
    font-size: 30px;
    font-family: "Comic Neue", cursive;
    padding-right: 1vw;
    background-color: darkgreen;
    border: dashed 10px;
    border-style: ridge;
    border-image: linear-gradient(to bottom, rgba(0, 90, 0, 0.81), rgb(0, 77, 0)) 1;
}

#imagem-exemplo img {
    width: 250px;
    height: 250px;
}

/*/BODY - Início do site de verdade*/
/*Extras*/
#Extras {
     display: flex;
     flex-direction: column;
     margin-top: 5%;
}

#Extras h3 {
    font-family: "Comic Neue", cursive;
    background-color: rgb(208, 255, 255);
    border: 5px outset rgba(170, 1, 153, 0.473);
    padding: 5%;
}

#Tags {
    list-style: none;
    width: 10vw;
    height: auto;
    background-color: rgba(127, 255, 212, 0.662);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px outset rgba(170, 1, 153, 0.473);
    border-radius: 6%;
    padding-top: 10;
    padding-bottom: 1%;
}

#Tags li {
    list-style: none;
}

/*/Extras*/