/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  background: url('images/grid.jpg');
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff;
}

.logo {
  color: #6a8b91;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif; 
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* spacing */
.introduction {
  text-align: center;
  padding: 80px 20px;
  background: url('images/background.jpg') center/cover no-repeat;
}

.introduction h1 { /* spacing of header */
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.introduction p { /* spacing of paragraph */
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.button {
  background-color: #ffffff;
  color: #8b5cf6;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

/* Features */
.features {
  display: grid;
  gap: 25px;
  padding: 60px 40px;
}

.feature-card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111827;
  color: #9ca3af;
  font-size: 0.8rem;
}