html, body{
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  color: #fff;
  background-image: url("blue_gradient.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/*body{
  display: flex;
  justify-content: center;
}*/

.main-container{
  max-width: 1920px;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0 auto;
}

.logo{
    position: absolute;
    top: 2rem;
    left: 2rem;
    height: 40px;
    max-width: 100%;
    z-index: 10;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.middle_sector{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 6rem;
    padding-right: 15vw;
    padding-bottom: 2rem;
    padding-left: 15vw;
    gap: 2rem;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.colore-text-container{
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.img_screenshot_container{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.img_screenshot_container img{
    max-height: 60vh;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.play-badge{
    width: 140px;
    height: auto;
}

@media(max-width: 800px){
  .logo{
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    width: 100%;
    z-index: 10;
  }

  .logo img {
    display: inline-block;
    height: 40px;
    width: auto;
  }

  .middle_sector {
    flex-direction: column;
    height: auto;
    padding-top: 1rem;
    padding-left: 15vw;
    padding-right: 15vw;
  }
}