* body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #0f1768;
  color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  display: flex;
  padding-top: 10px;
  justify-content: space-around;
  border-bottom: solid 1px #ffffff;
  margin: 0 20px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header a {
  text-decoration: none;
}

nav {
  display: flex;
}

h1 {
  font-size: 2.4em;
  margin: 5px 0;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 1em;
}
p {
  font-size: 14px;
}

.main-container {
  display: flex;
  padding: 20px;
  justify-content: space-around;
  align-items: center;
}

.main-content-geral {
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: repeat(5, 1fr); 
}

.jogo-content img {
  border-radius: 20px;
}

/*Rodape*/
.footer {
  padding-top: 20px;
  border-top: solid 1px #fff;
  margin: 20px;
}

.footer-content {
  display: flex;
  gap: 10px;
  justify-content: space-around;
}

.footer-content a {
  text-decoration: none;
  color: #ffffff;
}

.footer-logo {
  display: grid;
  align-items: center;
}

.footer-ajuda {
  display: grid;
  gap: 10px;
}

.footer-informacoes {
  display: grid;
  gap: 10px;
}

.footer-license {
  display: grid;
  gap: 5px;
}

.footer-copyright-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {

  .main-content-geral {
    grid-template-columns: repeat(2, 1fr); 
  }

  .jogo-content  img {
    width: 90%;
    height: auto;
  }
  
  .footer-content {
    display: grid;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
  }

  .footer-logo, .footer-ajuda {
    justify-content: space-around;
  }

  .footer-copyright-container {
    text-align: center;
  }

}
