@charset "UTF-8";

@font-face {
    font-family: tan-pearl;
    src: url(midias/fontes/tan-pearl.otf);
}

@font-face {
    font-family: opens;
    src: url(midias/fontes/OpenSans-Regular.ttf);
}

@font-face {
    font-family: opensb;
    src: url(midias/fontes/OpenSans-Bold.ttf);
}

:root{
    color-scheme: only light;
}

*{
    padding: 0;
    margin: 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    text-align: center;
}

img{
    max-width: 250px;
    margin: -50px;
}

header{
    padding: 25px;
    color: white;
}

#paty{
    padding: 5px;
}

main h1{
    font-family: 'tan-pearl';
    color: white;
    margin: 10px;
    padding: 5px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #FFB0B9, #FFB0B9, rgba(0, 0, 0, 0));
}

main p{
    color: #d8959d;
    font-family:'opensb';
    padding: 10px;
}

main{
    background-color: antiquewhite;
    max-width: 80vw;
    position: relative;
    margin: auto;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 35px;
}

section a{
    color: #FFB0B9;
    text-decoration: none;
    border-radius: 5px;
    padding: 3px;
}

section a:hover{
    text-decoration: underline;
    color: white;
    background-color: #FFB0B9;
}

iframe{
    max-width: 75vw;
    max-height: 40vh;
    border-radius: 10px;
    box-shadow: 0px 0px 8px rgba(102, 101, 101, 0.37);
    background-color: #FFB0B9;
}

section{
    padding-bottom: 30px;
}

footer{
    color: white;
    background-color: black;
    padding: 10px;
}

footer a{
    color: white;
    text-decoration: none;
}

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