@import url('https://fonts.googleapis.com/css2?family=Inter:wght@800&family=Oswald:wght@700&family=Press+Start+2P&family=Roboto+Mono:ital,wght@1,300&display=swap');
*{
    margin:0;
    padding:0;
    font-family: "fontebonita", Times, serif;
    list-style: none;
    font-size: 20px;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
p, h1{
    transition: 0.4s;
    font-family: 'OpenDyslexic', Arial, sans-serif;
}
/*header*/
header{
    padding:10px;
    max-width: 1200px;
    width:100%;
    margin:0 auto;
    background: rgb(73,200,245);
    background: linear-gradient(76deg, rgba(73,200,245,1) 0%, rgba(255,255,255,1) 52%);
}
.header-menus{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding:0 20px;
}
.header-menus a{
    font-size: 30px;
    color:black;
    font-family: 'OpenDyslexic';
}
.menu{
    display: flex;
}
.menu li{
    margin:5px;
}
.menu a:hover{
    background-color: #49c8f5;
    transition:0.2s;
    border-radius:20px;
}
.header-conteudo{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap-reverse;
}
.header-conteudo .header-texto h1{
    font-family: 'OpenDyslexic';
    font-size:30px;
}
.header-texto{
    max-width:600px;
}
.header-texto p{
    text-align: justify;
}
#hr-header{
    max-width:220px;
    margin:10px 0 10px 0;
    border:1px solid black
}
#foto-header{
    background-color: white;
    border-radius: 400px;
    width:100%;
    height: auto;
    max-width:500px;
}
/*main*/
#hr-main{
    max-width:1100px;
    display: block;
    margin:20px auto;
}
section:first-child{
    margin:0 auto;
    display: block;
    max-width:1200px;
    padding:20px;
}
section:first-child h1{
    font-family: 'OpenDyslexic';
    font-size: 40px;
    margin:0 0 10px 0;
}
section:first-child img{
    width:100%;
    height:auto;
    max-width:800px;
    display: block;
    border-radius:10px;
    margin:20px 0 20px 0;
}
section:first-child p{
    margin:10px 0 10px 0;
    line-height:30px;
    text-align: justify;
    max-width:800px;
}
#link{
    text-decoration: underline;
    color:blue;
}
#topo{
    background-color: #49c8f5;
    padding:10px;
    border-radius: 10px;
    position: fixed;
    right:0;
    top:90%;
    color:black
}
/*footer*/
footer{
    width: 100%;
    max-width: 1200px;
    margin:20px auto 0 auto;
    display: block;
}
footer p{
    line-height: 30px;
    text-align: center;
}
@media screen and (max-width:425px){
    #link{
        word-break: break-all;
    }
}
@media screen and (max-width:768px){
    #topo{
        display: none;
    }
    .header-menus{
        display: block;
    }
    .menu{
        display: block;
        margin:0 auto;
        text-align: center;
    }
    .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        margin:10px 0 20px 0;
    }
    #foto-header{
        max-width:400px;
        margin:20px 0 30px 0;
    }
    .header-texto h1{
        text-align: center;
        margin:0 auto;
    }
    .header-texto p{
        padding:5px;
    }
    #hr-header{
        margin:10px auto;
    }
}
#btn{
    padding:10px;
    background-color: #49c8f5;
    border:none;
    border-radius:2px;
    margin-right:10px;
    cursor: pointer;
}
header #btn{
    background-color: white;
}
.btnfonte{
    position:fixed;
    top:50%;
    right:0;
    max-width: 150px;
    display: flex;
    flex-direction: column;
}
#botao{
    padding:20px;
    background-color:#49c8f5;
    border:none;
    border-radius:2px;
    cursor: pointer;
}
@media screen and (max-width:1105px){
    .header-texto{
        max-width:450px;
    }
}
.bloco-js{
    border:1px solid black;
    background-color: antiquewhite;
    margin: 20px auto;
    padding:10px;
    max-width:1000px;
    word-break: break-all;
}
footer ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
footer ul li{
    margin:10px;
}