/* CSS Document */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin-top: 0;
  scrollbar-width: none;
}

:root {
  --bg-color: hsl(0, 0%, 88%);
  --tx-color: hsl(0, 0%, 60%);
  background-color: var(--bg-color);
  color: var(--tx-color);
  /* below this width, the slideshow doesn't work: */
  /* use minimum of 582 and viewport width (for phone in portrait mode) */
  min-width: min(582px, 1vw);
}

.header-container {
  display: flex;
  flex-flow: row wrap;
  margin-top: 2em;
}

.welcome {
  font-family: 'Pacifico', Verdana, sans-serif;
  font-weight: 100;
  font-size: 1.2em;
  text-align: center;
  margin-top: 0;
  margin-left: 0;
}

.intro {
  font-family: 'Pacifico', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5em;
  text-align: center;
  padding-top: 0;
  position: relative;
  color: #000;
  filter: blur(20px);
  animation: reveal 1s linear forwards 8s;
}

@keyframes reveal {
  to {
    filter: blur(0);
    color: var(--tx-color);
  }
}

.using {
  display: block;
  font-family: "Tillana", Verdana, sans-serif;
  font-weight: 100;
  font-size: 1.2em;
  text-align: center;
}

.footer {
  font-family: "Tillana", Verdana, sans-serif;
  font-weight: 100;
  font-size: 1em;
  color: #fff;
  text-align: center;
}

span {
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  font-weight: 900;
}

h2 {
  font-family: "Pacifico", sans-serif;
  font-style: normal;
  font-weight: 400;
}

h3 {
  font-family: "Tillana", Verdana, sans-serif;
  font-weight: 100;
  font-size: 15px;
  color: gray;
}

a:link {
  color: var(--tx-color);
  text-decoration: none;
}

a:visited {
  color: var(--tx-color);
  text-decoration: none;
}

a:hover {
  color: #879fff;
}

a:active {
  color: white;
}

.logo img {
  box-shadow: none;
}

img {
  margin: 6px;
  border: 0px;
  box-shadow: 5px 5px 10px hsl(0, 0%, 0%, 40%);
}