@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", system-ui, sans-serif;
  text-decoration: none;
}

header {
  width: auto;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dde0ff;
  padding-left: 80px;
  padding-right: 100px;
}

.header-logo {
  height: 50px;
}

button {
  height: 50px;
  border-radius: 8px;
  color: #fff;
  background-color: #6772e5;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding-left: 30px;
  padding-right: 30px;
  width: auto;
}

button:hover {
  background-color: #9eaaf0;
}

.full-screen {
  min-height: 90vh;
  background: #dde0ff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section {
  min-height: 100vh;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.text {
  justify-items: center;
  display: grid;
  margin-right: 50px;
  margin-left: 150px;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 600;
}

.text p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.image img {
  width: auto;
  height: 80vh;
}

.device {
  height: 80vh;
  align-self: end;
  justify-self: center;
}

.device img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.text-section {
  align-self: center;
  justify-self: start;
  text-align: start;
  padding-left: 100px;
}

.text-section #mobile {
  display: none;
}

.text-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.btn-secondary {
  background-color: #dde0ff;
  color: #6772e5;
  font-size: large;
  font-weight: 600;
  margin-left: 20px;
}

.btn-secondary:hover {
  background-color: white;
}

#download {
  height: 100vh;
  background-color: #828ae6;
}

#download h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

#download p {
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

a img {
  height: 80px;
  width: auto;
  padding-right: 100px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-logo {
    height: 35px;
  }

  #header-button {
    height: 35px;
    font-size: 0.9rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .full-screen {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .text-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-section #desktop {
    display: none;
  }

  .text-section #mobile {
    display: block;
    margin-bottom: 20px;
    line-height: 2;
  }

  .text-section h1 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 20px;
  }

  #booking {
    width: 100%;
    margin-bottom: 20px;
  }

  #pricing {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .device {
    height: 60vh;
  }

  #download {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #download .text-section {
    text-align: center;
    justify-self: center;
  }

  #download .device {
    align-self: flex-end;
    margin-top: 50px;
    object-fit: contain;
    height: 50vh;
  }

  #download h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 50px;
    font-weight: 600;
  }

  #download p {
    color: white;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
  }

  a img {
    height: 60px;
    padding-right: 0px;
    margin-top: 20px;
  }

  .section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .text {
    margin-right: 40px;
    margin-left: 40px;
  }

  .text p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .image img {
    width: 85vw;
    height: auto;
  }
}
