
@media screen and (max-width: 600px) {
  body {
    width: 100vw;
  }
}

@media screen and (min-width: 600px) {
  body {
    padding-top: 5rem;
  }
  h1 { font-size: 2.5rem; }
  .button {
    width: 12rem;
  }
  .topbar {
    margin-top: -5rem;
    height: 4rem;
    .ls { height: 3rem; }
    .right-buttons {
      height: 4rem;
      a img { height: 2.5rem; }
    }
  }
  .main-picture {
    height: 40vh;
    h2 {
      font-size: 3rem;
      height: 3rem;
    }
    h1 { font-size: 2.5rem; }
  }
  .compte-a-rebours {
    height: 10rem;
    .tick { font-size: 3rem; }
    .unite { font-size: 2rem; }
  }
  .liste-mariage, .photos {
    .texte .centered-box {
      h1 { font-size: 2rem;}
      p { font-size: 1rem; }
      a.button { font-size: 1rem;}
    }
  }
  .adresses {
    #map { height: 50vh; }
    .liste-adresses .adresse {
      h1 { font-size: 2rem; }
      h2 {
        font-size: 1.25rem;
        line-height: 1.5rem;
        font-weight: 600;
      }
      p {
        font-size: 1.25rem;
        line-height: 1.25rem;
        opacity: 0.8;
      }
    }
    .indications {
      margin: 4rem 0;
      p {
        font-size: 1rem;
        line-height: 1rem;
      }
    }
  }
  .planning {
    flex-direction: row;
    justify-content: space-around;
    .bar {
      position: absolute;
      z-index: 0;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
    }
    .planning-container {
      flex-direction: row;
      gap: 1rem;
      padding: 0 0.5rem;
      .item {
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 0.5rem;
        h1 {
          font-size: 1.25rem;
          margin: 0;
        }
        h2 {
          font-size: 0.9rem;
          text-align: center;
        }
        h3 {
          font-size: 0.75rem;
          text-align: center;
        }
      }
    }
  }
}
@media screen and (min-width: 900px) {
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }
  .main-picture {
    height: 45vh;
  }
  .liste-mariage {
    .texte .centered-box {
      gap: 1.5rem;
      padding: 1rem 2rem;
      h1 { font-size: 2.25rem; }
      p { font-size: 1.25rem; }
      a.button { font-size: 1.25rem; }
    }
  }
  .adresses {
    .indications {
      padding: 0 8rem;
      p {
        font-size: 1.25rem;
        line-height: 1.25rem;
      }
    }
  }
  .planning {
    margin: 0 2rem;
    .planning-container {
      flex-direction: row;
      gap: 2rem;
      .item {
        padding: 0.5rem 0.5rem;
        h1 {
          font-size: 1.75rem;
          margin: 0;
        }
        h2 {
          font-size: 1.25rem;
          text-align: center;
        }
        h3 {
          font-size: 1rem;
          text-align: center;
        }
      }
    }
  }  
}