@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Numans&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");

::-moz-selection {
  background: thistle;
  color: white;
}

::selection {
  background: thistle;
  color: white;
}

html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

html,
body {
  width: 100vw;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  position: relative;
}

a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

main {
  padding: 1em;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.branding {
  font-family: "Mulish", sans-serif;
  font-weight: bolder;
  letter-spacing: 0.05em;
  text-align: center;
  width: 50%;
}

.branding > img {
  max-width: 25%;
  min-width: 100px;
  user-select: none;
}

.branding > h1 {
  margin: 1em 1em 0.2em 1em;
}

@media screen and (max-width: 600px) {
  .branding > h1 {
    font-size: 1.4em;
  }

  .branding {
    width: 100%;
  }

  .info > .explainer {
    font-size: 1.1rem !important;
  }
}

.info {
  text-align: center;
}

.info > .explainer {
  font-size: 1.2rem;
  color: #757e85;
  margin-bottom: 10px;
}
@keyframes dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
.info > .explainer::after {
  content: "";
  position: absolute;
  animation: dots 3s linear 0.33s infinite;
}

.info > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.info > ul > li {
  margin-bottom: 0.5em;
  display: inline-flex;
}

.info > ul > li::before {
  content: "\2014\a0";
  display: block;
  color: #d3a2b6;
  margin-right: 10px;
}
.info > ul > li::after {
  content: "\2014\a0";
  display: block;
  color: #d3a2b6;
  margin-left: 10px;
}

.info > .consulta-link {
  background: #d3a2b6;
  color: white;
  font-size: 1.2em;
  display: inline-block;
  margin-top: 2em;
  padding: 0.5em 1em;
  font-weight: bolder;
  border-radius: 3em;
  transition: all ease-in-out 150ms;
  border: #d3a2b6 2px solid;
}

.info > .consulta-link:hover {
  background: transparent;
  color: black;
}
