

  @import url("https://use.typekit.net/csf2paq.css");

h1{
font-family: "forager-overlap", sans-serif;
font-weight: 200;
font-style: normal;
}

body{
font-family: "Owners", sans-serif;
font-weight: 200;
font-style: normal;
}

main{
 margin-top:250px; 
}

    /* Navigation container */
    nav {
        display: flex;
        justify-content: flex-end; /* Push items to the right */
        align-items: center;       /* Vertically center items */
        background-color: #333;
        padding: 10px 20px;
        position: fixed;           /* Sticks to top */
        top: 0;
        left: 50;
        width: 100%;
        z-index: 1000;
    }

    /* Navigation links */
    nav a {
        color: white;
        text-decoration: none;
        padding: 8px 15px;
        transition: background 0.3s;
    }

    nav a:hover {
        background-color: #575757;
        border-radius: 4px;
    }


body {
  margin: 0;
  /*font-family: 'Quicksand', sans-serif;*/
  background: #f2f2f2;
}

/* NAV */
nav {
  background: #9fb8cc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  width: 40px;
  height: 40px;
  background: #c9d7e3;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

nav li {
  cursor: pointer;
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero-img {
  width: 10px;
  height: 10px;
  background: #c9d7e3;
  margin: 0 auto 20px;
}

.hero h1 {
  /*font-family: 'EB Garamond', serif;*/
  font-size: 48px;
  margin: 10px 0;
}

.hero p {
  max-width: 500px;
  margin: 0 auto;
}

/* DIVIDER */
.hero::after {
  content: "";
  display: block;
  height: 20px;
  background: #9fb8cc;
  margin-top: 40px;
}

/* QUESTION SECTION */
.question-section {
  text-align: center;
  padding: 60px 20px;
}

.question-box {
  display: inline-block;
  padding: 20px 40px;
  border: 6px solid #c9d7e3;
  border-radius: 20px;
  /*font-family: 'EB Garamond', serif;*/
  font-size: 40px;
  margin-bottom: 40px;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

button {
  padding: 10px 25px;
  border: 5px solid #c9d7e3;
  border-radius: 20px;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  background: #c9d7e3;
}

/* TEXT */
.description {
  max-width: 500px;
  margin: 0 auto;
  /*font-family: 'EB Garamond', serif;*/
  font-size: 18px;
}

/* FOOTER */
footer {
  height: 120px;
  background: #9fb8cc;
  margin-top: 60px;
}