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

body {
  font-family: "Poppins", "Roboto", sans-serif;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
}

main {
  width: 90vw;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
}

.test {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.smaller-logo {
  align-self: flex-start;
}

.big-logo-and-text {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.text {
  text-align: center;
  margin-bottom: 2rem;
}

.text p {
  margin: 0.8rem 0;
}

.smaller-logo img {
  width: 60%;
}

.bigger-logo img {
  width: 100%;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a:first-child img {
  width: 2.5rem;
}

.social-icons a:last-child img {
  width: 3rem;
}
a {
  color: #602865;
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  color: #2e253e;
}


@media screen and (min-width: 768px) {
  .big-logo-and-text {
    flex-flow: row-reverse;
  }

  .smaller-logo {
    margin-left: 13rem;
  }

  .social-icons {
    margin-left: 4rem;
    align-self: flex-start;
  }

  body {
    width: 100vw;
    align-items: center;
    justify-content: center;
  }

  main {
    width: 80vw;
  }
}
