main {
  max-width: 1200px;
}

.main_navigation nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background-color: #777;
  margin-bottom: 3rem;
}
.main_navigation nav .logo {
  font-weight: bold;
  font-size: 2rem;
  color: red;
  letter-spacing: 3px;
  color: white;
}
.main_navigation nav .menu svg {
  width: 5rem;
  stroke-width: 10;
  stroke: white;
  stroke-linecap: round;
  cursor: pointer;
}
.game_section {
  padding: 1rem;
}
.game {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.game p {
  flex: 1;
  text-align: justify;
  line-height: 1.8rem;
  color: #666;
}

.game_description {
  padding-top: 2rem;
  line-height: 1.8rem;
}

h1,
h2,
h3,
p {
  margin-bottom: 1rem;
  text-align: justify;
}

.move_number {
  font-weight: bold;
}

.suggested_content{
    padding-top: 5rem;
    margin: 1rem;
    width: 100%;
}.suggested_content div{
    display: flex;
    justify-content: space-evenly;
}

.suggested_content .suggested{
    height: 15rem;
    width: 15rem;
    border: solid 5px black;
}

@media screen and (max-width: 1000px) {
  .game {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .game iframe {
    max-width: 100%;
  }
}




footer {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  background-color: #b58863;
}
footer .footer_wrapper {
  display: flex;
  justify-content: space-evenly;
  height: 20rem;
}
footer p,
a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
footer .footer_image {
  display: flex;
  justify-content: end;
}
footer .footer_image img {
  height: 100%;
}
footer .copyright {
  text-align: center;
  color: var(--color-text-primary);
  font-size: 0.8rem;
  font-weight: 400;
}
@media screen and (max-width: 550px) {
  footer .footer_image img {
    display: none;
  }
  footer .footer_wrapper {
    justify-content: start;
  }
}
