@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

.app-screenshot {
    width: 100%;
    padding: 15px 12px;
    margin-top: 64px;
}

.app-logo {
    height: 40px;
}

/* Small (≤767p) */
@media (max-width: 767px) {
  nav, main {
      max-width: 540px;
  }
  .app-screenshot {
      max-width: 400px;
  }
  .main-content {
      flex-direction: column; /* Change flex direction to column on small screens */
      align-items: flex-start; /* Align items to the start of the column */
  }
  .text-column {
      padding: 0; /* Space between text and image */
  }
}

/* Medium (≥768px) */
@media (min-width: 768px) {
  nav, main {
      max-width: 720px;
  }
  .app-screenshot {
      max-width: 400px;
  }
}

/* Large (≥992px) */
@media (min-width: 992px) {
  nav, main {
      max-width: 960px;
  }
  .app-screenshot {
      max-width: 500px;
  }
}

/* Extra Large (≥1200px) */
@media (min-width: 1200px) {
  nav, main {
      max-width: 1140px;
  }
  .app-screenshot {
      max-width: 540px;
  }
}

/* Text */
body {
    background: #F7F8FA;
    color: #212529;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    margin: 0;
}

h5 {
    color: #9EA2A2;
    font-size: 13px;
    font-weight: 500;
    margin: 5px auto;
}

a {
    color: #0d6efd;
    font-weight: 600;
   text-decoration: none;
}

p {
    margin: 0;
}

.spacer {
    height: 10px;
}

/* Navigation Bar */
nav {
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 15px 12px;
    width: 100%;
    margin: auto;
}

.main-content {
    display: flex;
    justify-content: space-between; /* Optional for spacing */
    align-items: center; /* Vertically center items */
}

.text-column {
    flex: 1; /* Allow text to take available space */
    padding-right: 20px; /* Space between text and image */
}

.image-column {
    flex: 1; /* Allow image to take available space */
}

.button {
    color: #ffffff;
    background-color: #2469f0;
    border-radius: 100px;
    border: 0 solid transparent;
    padding: 12px 36px;
    font-size: inherit;
    font-weight: 600;
}

.button:hover {
    background-color: #1a56d3; /* Change to a darker blue on hover */
}

/* Main content */
main {
    text-align: left;
    padding: 15px 12px;
    margin: auto;
    flex-grow: 1; /* Takes available space between navbar and footer */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Error content */
.error-content, contact-content {
    padding: 64px 12px;
}
