
@import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#3590DB;
font-family:'Trebuchet MS', Arial, sans-serif;

}

header{
background:#3590DB;
padding:15px;
text-align:center;
color:#262626;
}

header h1{
font-family:"Macondo", cursive;
font-size:26px;
color:#b30000;
margin-bottom:5px;
}

a.fontes, a.fontes:visited, a.fontes:hover, a.fontes:active, a.fontes:focus {
    overflow-wrap: break-word;
    word-break: break-word;
    text-decoration: none;
    color: #1a53ff;
}

nav ul{
background:#0a4aa9;
padding:10px;
display:flex;
justify-content:center;
gap:20px;
list-style:none;
flex-wrap:wrap;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

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

main{
display:flex;
justify-content:center;
padding:20px;
}

section{
  width:100%;
max-width:700px;
padding:10px;
line-height:1.6;
color:#262626;
background:white;
border-radius:6px;
overflow-wrap: break-word;
}

p {
  margin-bottom: 2px;
}

footer{
background:#0a4aa9;
padding:10px;
text-align:center;
color:#fff;
margin-top:20px;
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #0066ff;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 15px;
 
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

