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

body {
  background-color: white;
  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: white;
  text-decoration: none;
}

.navbar a:visited {
  color: grey;
}

.navbar a:hover {
  color: red;
}

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

.main h2 {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  line-height: 40px;
  letter-spacing: 2px;
  text-align: center;
}

hr {
  border-top: 15px solid black;
  margin-top: 25px;
}

/* títulos */
.container {
  display: flex;
  height: 290px;
  width: 740px;
  margin: 40px auto 0px auto;
  gap: 6px;
  align-items: center;
}

.container a:link {
  text-decoration: none;
}

.title {
  border: 1px solid grey;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  height: 287px;
  width: 182px;
  align-items: center;
  justify-content: center;
}

.title img {
  border-radius: 16px 16px 0 0;
  opacity: 1;
  transition: .7s ease;
}

.title img:hover {
  opacity: 0.3;
  filter: blur(1px);
}

.title section:hover {
  background-color: black;
  color: white;
}

section {
  background-color: white;
  color: black;
  border-radius: 0 0 16px 16px;
  height: 40px;
  width: 174px;
  text-align: center;
  padding: 12px 0 0 0;
  font-weight: lighter;
}

#soon:hover {
  filter: blur(1px);
  background-color: grey;
  color: white;
}

/* footer */
.socials {
  /* border: 2px dotted black; */
  height: 60px;
  width: 800px;
  margin-right: auto;
  margin-left: auto;
  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;
}