@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--white);
}

header {
  color: var(--white);
  background: rgb(0, 97, 128);
  background: linear-gradient(45deg, rgb(0, 97, 128) 0%, rgb(155, 103, 107) 45%, rgb(238, 111, 57) 100%);
  height: 100vh;
  min-height: 500px;
}
header img {
  width: 30%;
  min-width: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}
header h1 {
  font-size: 38 px;
  animation: hoverA 1.5s infinite 0s linear;
}
header h1 a {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}
header h1 a:hover {
  color: rgb(231, 231, 231);
}

@keyframes hoverA {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0%);
  }
}
main {
  max-height: 97.5vh;
  min-height: 825px;
  background-color: var(--white);
  color: var(--purple);
  display: flex;
  align-items: center;
  text-align: center;
}
main div {
  width: 70%;
  margin-left: 15% !important;
}
main #words {
  font-size: 34px;
  font-weight: bold;
  white-space: nowrap;
  color: var(--orange);
  opacity: 0.8;
}
main img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
main h2 {
  font-size: 38px;
  font-weight: 600;
}
main p {
  font-weight: 400;
}
main h1 {
  font-size: 32px;
  animation: hoverA 1.5s infinite 0s linear;
}
main h1 a {
  color: var(--purple);
  text-decoration: none;
  cursor: pointer;
}
main h1 a:hover {
  color: #666894;
}

@media only screen and (max-width: 500px) {
  main div {
    width: 85%;
    margin-left: 7.5% !important;
  }
}
@media only screen and (max-width: 800px) {
  main #words {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1000px) {
  main div {
    width: 50%;
    margin-left: 25% !important;
  }
}
footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--purple);
  color: var(--white);
  text-align: center;
  font-weight: 200;
}

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