*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

body {
  position: relative;
  min-height: 100vh;
}

header {
  height: 10vh;
  width: 10vh;
  min-width: 80px;
  min-height: 80px;
}
header img {
  width: 100%;
  height: 100%;
}

main {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 5rem;
}
main .modal {
  background-color: rgba(140, 124, 238, 0.1);
  transition: 200ms ease;
  padding: 20px 0;
}
@media (min-width: 768px) {
  main .modal {
    border-radius: 21px;
  }
}
@media (min-width: 768px) {
  main .modal {
    padding: 20px 35px;
  }
}
main .modal .text {
  padding: 0 35px;
}
@media (min-width: 768px) {
  main .modal .text {
    padding: 0;
  }
}
main .modal .text p {
  margin: 15px 0;
}
main .modal .button {
  margin: 25px 0 0;
  background-color: #8c7cee;
  text-align: center;
  font-size: 1.8em;
  cursor: pointer;
  transition: ease 500ms;
  padding: 10px;
}
@media (min-width: 768px) {
  main .modal .button {
    border-radius: 12px;
  }
}
main .modal .button p {
  color: #fff;
}
main .modal .button:hover {
  background-color: rgba(140, 124, 238, 0.4);
  padding: 10px;
  transition: ease 300ms;
}
@media (min-width: 1024px) {
  main {
    padding-bottom: 3.3rem;
  }
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5rem;
  padding: 0 15px;
}
@media (min-width: 1024px) {
  footer {
    height: 3.3rem;
  }
}

.socials {
  padding: 0 15px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.socials .content {
  display: flex;
  flex-direction: column;
}
.socials .content ul {
  display: flex;
  list-style: none;
  justify-content: flex-start;
}
.socials .content ul li {
  width: 50px;
  height: 50px;
}
@media (min-width: 1024px) {
  .socials .content ul li {
    width: 25px;
    height: 25px;
  }
}
.socials .content ul li a {
  display: block;
}
.socials .content ul li a img {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=main.css.map */
