*,
html {
  box-sizing: border-box;
}

@media (min-width: 0) {
  /* Styles for the main container */
  main {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
  }

  p {
    font-family: "Roboto", sans-serif;
  }

  /* Typography styles */
  .title {
    font-family: "Roboto", sans-serif;
    font-size: 8vw;
    font-weight: 600;
  }

  .tagline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 3.5vw;
    margin: 1.5rem 0;
    font-weight: 100;
  }

  /* Icons styles */
  .icons-main i {
    font-size: 3em;
  }

  .icons-main i {
    padding: 0 0.2rem;
    margin: 0 0.5rem;
    transition: 350ms ease-in-out;
  }

  .icons-main i:hover {
    translate: 0 -0.25rem;
  }

  .icons-main a {
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  /* Typography styles */
  .title {
    font-size: 5rem;
  }

  .tagline {
    font-size: 2rem;
  }
}

@media (min-width: 1440px) {
  /* Typography styles */
  .title {
    font-size: 6.5vw;
  }

  .tagline {
    font-size: 1.5vw;
  }
}

@media (min-width: 2400px) {
  /* Typography styles */
  .title {
    font-size: 6vw;
  }

  /* Icons styles */
  .icons-social i {
    font-size: 4em;
  }
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}