@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  background: #0a0a0a;
}

body {
  color: #fff;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.4em;
  max-width: 90%;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

strong {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
}

h1.heading {
  font-size: 30px;
  margin: 100px 0;
  width: 100%;
  font-weight: 300;
  letter-spacing: -1px;
}
h1.heading span {
  font-size: 50px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
  color: #F28C1D;
}

.line {
  position: relative;
  z-index: 0;
}
.line::before, .line::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}
.line::after {
  width: 0;
  background: #F28C1D;
}

a:hover .line:after {
  width: 100%;
}

header {
  display: inline-block;
  width: 100%;
  margin: 40px auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-content: center;
  align-content: center;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
}
.logo .shape {
  height: 60px;
  width: 60px;
  border-radius: 2px;
  background-color: #F28C1D;
  animation: squarecircle 4s 1s infinite alternate;
}
.logo .text {
  position: relative;
  font-weight: 900;
  font-size: 21px;
  color: #fff;
  z-index: 1;
  margin-left: 20px;
  line-height: 1.1;
}
.logo .text span {
  font-weight: 500;
  display: block;
}

.message {
  padding-bottom: 8px;
}

.blobs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -80px;
  z-index: -1;
  overflow: hidden;
}
.blobs svg {
  position: absolute;
  top: 0;
  fill: #111;
  margin: 0;
  width: 60%;
  z-index: -10;
}
.blobs svg .blob {
  animation: blobby 4s infinite;
}

footer {
  margin-top: auto;
  margin-bottom: 40px;
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.6;
}
footer span {
  display: block;
}

@keyframes blobby {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes squarecircle {
  0% {
    border-radius: 0 0 0 0;
    background: #F28C1D;
    transform: rotate(0deg);
  }
  25% {
    border-radius: 50% 0 0 0;
    background: #fff;
    transform: rotate(45deg);
  }
  50% {
    border-radius: 50% 50% 0 0;
    background: #F28C1D;
    transform: rotate(90deg);
  }
  75% {
    border-radius: 50% 50% 50% 0;
    background: #fff;
    transform: rotate(135deg);
  }
  100% {
    border-radius: 50%;
    background: #F28C1D;
    transform: rotate(180deg);
  }
}

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