/* Tablet layout */
@media all and (max-width: 1000px) {
  .application {
    width: 50%;
    margin-bottom: 50px;
  }

  footer {
    text-align: center;
  }

  .top-wrapper h1 {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .top-wrapper h2 {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .heading h2 {
    font-size: 20px;
  }
}

/* Smartphone layout */
@media all and (max-width: 670px) {
  .application {
    width: 100%;
  }

  footer {
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .facebook {
    margin-bottom: 10px;
  }
  
  .top-wrapper {
    text-align: left;
  }

  /* The texts "Sing up" and "Sign in" are displaied off. */
  .header-right {
    display: none;
  }

  /* Google icon is configured - "display: block;" */
  .material-symbols-outlined {
    color: white;
    float: right;
    font-size: 35px;
    padding: 15px 10px;
    display: block;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24,
  }

  .top-wrapper h1 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .top-wrapper h2 {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .top-wrapper p {
    font-size: 14px;
  }
}