@font-face {
  font-family: "Neue";
  src: url("fonts/neue-ragrade-variable.ttf") format("truetype");
}

@font-face {
  font-family: "AlbertSans";
  src: url("fonts/albert-sans-variable.ttf") format("truetype");
}

@font-face {
  font-family: "AlbertSansItalic";
  src: url("fonts/albert-sans-italic-variable.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  color: white;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  overscroll-behavior: none;
}

body {
  overscroll-behavior: none;
  background-image: url("landing-images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
}

main {
  z-index: 2;
}

* {
  box-sizing: border-box;
  margin:  0;
  padding: 0;
  font-size: 1rem;
}

#bg-img {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 1;
}

#logo {
  position: relative;
  z-index: 20;
}

header {
  padding-left: 5%;
  padding-top: 50px;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.screenshots-wrapper {
  flex-basis: 60%;
  flex-shrink: 0;
  text-align: center;
}

.screenshots {
  width: 100%;
  position: relative;
  transform: scale(1.75);
}

.form-section {
  flex-basis: 30%;
  position: relative;
  flex-shrink: 1;
  margin-bottom: 100px;
  z-index: 10;
}

h1 {
  font-family: "Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  color: white;
  margin-top: 80px;
  margin-bottom: 50px;
}

a {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 12px;
  font-family: "AlbertSans", serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: black;
  background-color: white;
  width: 100%;
  border: unset;
  outline: unset;
  margin-bottom: 20px;
  transition: .2s background-color, .2s color;
  text-decoration: unset;
}

button:hover {
  color: white;
  background-color: black;
}

p {
  font-family: "AlbertSans", sans-serif;
  text-align: center;
}

span {
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

@media all and (max-width: 1024px) {
  header {
    padding-left: 5%;
    padding-top: 30px;
  }

  .flex {
    flex-direction: column;
  }

  .screenshots-wrapper {
    margin-top: unset;
  }

  .screenshots {
    transform: unset;
  }

  h1 {
    font-size: 2rem;
    margin-top: unset;
    margin-bottom: 50px;
  }

  .form-section {
    margin-bottom: 40px;
  }
}