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

body {
  background-color: #FFFFF9;
  font-family: "Courier Prime", monospace;
}

/* header */
header {
  height: 208px;
  width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.navbar {
  display: block;
  background-color: black;
  border-radius: 3px;
  height: 45px;
  width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;

}

.divider {
  color: white;
}

.navbar span {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  margin-left: 10px;
}

.navbar a:link {
  color: #FFFFF9;
  text-decoration: none;
}

.navbar a:visited {
  color: grey;
}

.navbar a:hover {
  color: red;
}

/* main */
.main {
  display: block;
  border: 2px dotted black;
  height: 600px;
  width: 800px;
  margin: 20px auto 50px auto;
  padding: 30px 40px;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  margin-bottom: 7px;
}

h2 {
  font-family: "Oswald", sans-serif;
  margin-top: 60px;
}

h3 {
  font-family: "Courier Prime", monospace;
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 50px;
}

/* seção de botões*/

.botoes {
  display: flex;
  gap: 7px;
  margin: 10px auto 0 auto;
  height: 60px;
  align-items: center;
}


button {
  border: 1px solid black;
  border-radius: 5px;
  background-color: white;
  color: black;
  padding: 15px 20px;
  transition-duration: 0.3s;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
}

button:hover {
  background-color: black;
  color: white;
}

/* footer */
.socials {
  /* border: 2px dotted black; */
  height: 60px;
  width: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  text-align: center;
  padding-top: 10px;
}

.socials img {
  padding-left: 15px;
}

footer {
  /* border: 3px solid purple; */
  text-align: center;
  font-size: 12px;
  height: 90px;
  width: 800px;
  margin: 0px auto 5px auto;
  padding-top: 5px;
}