:root {
  --primary: #FC104E;
  --background-0: #161616;
  --background-1: #242424;
  --background-2: #2F2F2F;
  --background-3: #313131;
}

body {
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: var(--background-0);
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  color: white;
}

a {
  color: var(--primary);
}

.font-alt, .features-section .feature h3, .hero-section .hero-content h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}

button {
  cursor: pointer;
  transition: 0.2s;
  padding: 8px 18px;
  background-color: var(--primary);
  color: white;
  border: none;
  -webkit-appearance: none;
  outline: none;
  border-radius: 20px;
}
button:hover {
  opacity: 0.8;
}
button.secondary {
  background-color: var(--background-3);
}

main {
  padding: 10px;
}

header {
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  width: calc(100% - 40px);
  height: 60px;
  background-color: var(--background-0);
}
header img {
  width: 120px;
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  max-width: 900px;
}
header .header-right button {
  margin-left: 10px;
}

main {
  overflow-y: scroll;
  flex-grow: 1;
  padding: 0px;
}

.hero-section {
  opacity: 0;
  animation: fadeIn 2s 1s forwards;
  display: flex;
  justify-content: center;
  height: calc(100vh - 100px);
  background-image: url(../assets/stock-photos/people-at-table.png);
  border-radius: 30px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.hero-section > div {
  max-width: 900px;
  width: calc(100% - 40px);
  padding: 20px;
}
.hero-section .hero-circles {
  pointer-events: none;
  position: absolute;
  top: 20px;
  height: calc(100vh - 100px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 700px) {
  .hero-section .hero-circles {
    height: 1200px;
  }
}
.hero-section .hero-content {
  margin-top: 40vh;
  max-width: 550px;
}
.hero-section .hero-content h1 {
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 700;
}
.hero-section .hero-content h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.features-section {
  margin: 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features-section .feature {
  padding: 20px;
  width: calc(100vw - 40px);
  margin-top: 30px;
  max-width: 900px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.features-section .feature h3 {
  font-size: 28px;
  margin-bottom: 0px;
}
.features-section .feature img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.features-section .feature div {
  margin-left: 40px;
}
.features-section .feature.-left {
  flex-direction: row;
}
.features-section .feature.-left div {
  margin-left: 0px;
  margin-right: 40px;
}
@media only screen and (max-width: 700px) {
  .features-section .feature {
    flex-wrap: wrap;
  }
  .features-section .feature img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .features-section .feature div {
    margin: 0px;
  }
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: var(--background-1);
}

.terms-container {
  display: flex;
  justify-content: center;
}
.terms-container ol h2 {
  margin-left: -40px;
}
.terms-container ol h3 {
  margin-left: -40px;
}/*# sourceMappingURL=styles.css.map */