@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --white: rgb(255, 255, 255);
  --light: rgb(243, 245, 247);
  --light-secondary: rgb(220, 220, 220);
  --light-border: rgb(200, 200, 200);
  --dark: rgb(16, 16, 16);
  --dark-secondary: rgb(30, 30, 30);
  --dark-border: rgb(50, 50, 50);
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;

  background-color: var(--light);

  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  position: relative;
}

.top {
  background-color: var(--light);
  color: var(--dark);
  width: 100%;
  height: 50vh;
  min-height: 400px;
  position: relative;
}

.top .content {
  position: absolute;
  bottom: 3rem;
  text-align: center;
  width: 100%;
}

.top h1 {
  font-weight: 750;
  font-size: 5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.top .logo {
  height: 8rem;
}

.top p {
  font-size: 1.8rem;
  margin-bottom: 0;
  padding: 0 1rem;
}

.bottom {
  background-color: var(--dark);
  color: var(--light);
  width: 100%;
  height: 50vh;
  min-height: 400px;
  position: relative;
}

.bottom .content {
  position: absolute;
  top: 3rem;
  text-align: center;
  width: 100%;
}

.bottom h1 {
  font-weight: 750;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.bottom input {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  padding: 16px;
  border: 1px solid var(--dark);
  background-color: var(--dark-secondary);
  color: var(--light-secondary);
  border-radius: 16px;
  max-width: 350px;
  width: 100%;
}

.bottom input:focus {
  border-color: var(--dark-border);
  outline: 0;
}

.bottom button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  border: 1px solid var(--light);
  background-color: var(--white);
  color: var(--dark);
  border-radius: 16px;
  max-width: calc(350px + (16px * 2));
  width: 100%;
  padding: 14px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.bottom button:hover {
  border: 1px solid var(--light-border);
  background-color: var(--light-secondary);
  cursor: pointer;
}

.bottom input:focus {
  border: 1px solid var(--light-border);
  outline: 0;
}

.bottom .tease {
  font-size: 1.2rem;
  color: var(--light-border);
  margin-top: 4rem;
}

footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
}

footer a .social-icon {
  color: var(--light-border);
  transition: 0.2s;
}

footer a .social-icon:hover {
  color: var(--light);
}

footer .copyright {
  font-size: 0.8rem;
  color: var(--light-border);
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 510px) {
  .top .logo {
    height: 6.5rem;
  }

  .top h1 {
    font-size: 3.5rem;
  }

  .top p {
    font-size: 1.5rem;
  }

  .bottom h1 {
    font-size: 2rem;
  }

  .bottom input {
    font-size: 1rem;
  }

  .bottom button {
    font-size: 1rem;
  }

  .bottom .tease {
    font-size: 1rem;
  }
}

@media screen and (max-width: 414px) {
  .bottom input {
    font-size: 1rem;
    width: calc(100% - 32px - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .bottom button {
    font-size: 1rem;
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
}

/* Sign up */

.hide {
  width: 200px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: var(--light);
  z-index: 999;
  /* background-color: var(--dark); */
  /* z-index: 0; */
}

@media screen and (max-width: 576px) {
  .hide {
    width: 100%;
    height: 38px;
  }
}

/* Press Kit */

.press-kit {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.press-kit h1 {
  margin-bottom: 0;
}

.press-kit h1 img {
  width: 400px;
}

.press-kit h2 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 750;
}

.press-kit article .divider {
  width: 100%;
  height: 1px;
  background-color: var(--light-border);
  margin: 16px 0;
}

.press-kit article h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.press-kit article p {
  font-size: 1.2rem;
  line-height: 2rem;
}

.press-kit article img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: 1px solid var(--light-border);
}

.press-kit h3 {
  font-size: 1.6rem;
  margin-top: 1.4rem;
  margin-bottom: 0.8rem;
}

.press-kit .list p {
  margin: 0.5rem 0;
}

.press-kit a {
  color: var(--dark-border);
  font-weight: 700;
}

@media screen and (max-width: 832px) {
  .press-kit {
    padding-left: 1rem;
    padding-right: 1rem;
    width: calc(100% - 2rem);
  }
}

@media screen and (max-width: 450px) {
  .press-kit h1 img {
    width: 100%;
  }

  .press-kit h2 {
    text-align: center;
  }

  .press-kit article h2 {
    text-align: left;
  }
}
