@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Playwrite+IT+Moderna:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');

*{
    margin: 0px;
    padding: 0px;
}
html, body{
    background-color: rgb(49, 49, 49);
}
h1{
    font-family: "Oswald", sans-serif;    
}
h2{
    font-family: "Gochi Hand", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 20px;
}
header{
    background-color: black;
    color: white;
    text-align: center;
    width: 100vw;
    position: fixed;
}
.logo{
    margin: auto;
    width: 100px;
    height: 100px;
    background-image: url(../imagens/botafogo.png);
    background-size: cover;
}
menu{
    display: none;
    text-align: center;
}
menu ul{
    list-style: none;
}
menu li{
    border-bottom: 2px solid white;
    padding: 5px;
}
menu a{
    text-decoration: none;
    color: white;
    font-family: "Oswald", sans-serif;
}
menu li:hover{
    background-color: darkgrey;
}
main {
    padding-top: 180px;
    width: 90vw;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    
}
main p{
    text-align: justify;
    margin-bottom: 15px;
    text-indent: 15px;
    padding: 10px;
}
.endMenu{
    text-align: center;
    padding-bottom: 10px;
}
.endMenu a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
}
.endMenu a:hover{
    color: darkgrey;
    font-weight: bolder;
}
footer{
    background-color: black;
    color: white;
    font-family: "Oswald", sans-serif; 
    text-align: center;
    padding: 10px
}
footer a{
    text-decoration: none;
    color: darkgrey;
}
footer a:hover{
    color: lightgrey;
}