*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-content: center;
  flex-wrap: wrap;

  .container {
    text-align: center;
    background-color: white;
    width: 50%;
    border-radius: 15px;
  }

  .buttonsContainer {
    margin-bottom: 20px;
  }
}

h1 {
  margin-top: 20px !important;
}

@media screen and (max-width: 425px) {
  .container {
    width: 80% !important;

    .buttonsContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  }
}

@media screen and (min-width: 425px) {
  .container {
    width: 80% !important;
    max-width: 614px !important;

    .buttonsContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  }
}

@media screen and (min-width: 1024px) {
  .container {
    width: 614px !important;

    .buttonsContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  }
}
