* { margin: 0; padding: 0; box-sizing: border-box; }

.monopoly {
    max-width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 12px 13px #F3EEEE;
  }

  header{
    font-size: 30px;
    color:rgb(243, 190, 199);
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(255, 255, 255);
    letter-spacing: 1vh;
  }

  body {
    background-color: rgb(5, 32, 13);
    color:aliceblue;
    line-height: 1.5;
    font-size: 18px;
    margin-left: 10px;
    margin-right: 10px;
  }

  footer {
    text-align: center;
    font-size: 12px;
    font-weight: normal;
    padding: 10px;
  }

  footer ul {
    text-align: center;
    list-style-position: inside;
  }


  nav{
    margin: 20px;
  }

  nav a{
    font-size: 16px;
    color: aliceblue;
    text-decoration:none;
    border-style:outset;
    margin: 5px;
    padding: 2px;
    display: inline-block;
    max-width:fit-content
  }

  nav a:hover{
    background-color: rgb(243, 190, 199);
    box-shadow: 0px 0px 12px 13px #F3BEC7;
    color:black;
    border-style: none;
  }

  nav li{
    display: inline;
  }

  .intro h2{
    color: rgb(243, 190, 199);
    font-family: "preconnect", sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 40px;
  }

  .hot h2{
    color: rgb(243, 190, 199);
    font-family: "preconnect", sans-serif;
    font-size: 32px;
    margin-top: 20px;
  }

  .hot h3{
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-size: 32px;
    
  }

  .hot{
    margin-bottom: 150px;
  }

.root-wrapper{
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.root-game img{
  width: 400px;
}

.root-text{
  flex: 1;
  min-width: 50%;
}

.arcs-wrapper{
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.arcs-game img{
  width: 400px;
}

.arcs-text{
  flex: 1;
  min-width: 50%;
}

.parks-wrapper{
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.parks-game img{
  width: 400px;
}

.parks-text{
  flex: 1;
  min-width: 50%;
}


  footer{
    background-color: rgb(243, 190, 199);
    color: black;
    font-size: 14px;
    line-height: 1.5;
  }