@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  /* margin: 0;
  padding:0; */
  min-height: 100vh;
  background-color: #f9f9f9;
}
:root {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}
* {
  margin: 0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
}
.logo {
  font-size: 2em;
  color: var(--emerald);
  margin-right: 270px;
}
.navigation a {
  text-decoration: none;
  color: var(--emerald);
  padding: 6px 15px;
  margin: 0 10px;
  font-weight: 600;
  transition: .5s;
  border-radius: 8px;
}
a:hover {
  background-color: var(--emerald);
  color: #fff;
}
.parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
 height: 100vh;
  overflow: hidden;
  ;
}
.parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;;
}
#text {
  position: absolute;
  font-size: 4em;
  color: white;
  text-shadow: 2px 2px 2px 4px rgba(0,0,0,0.2)
}
.content {
  position: relative;
  background: var(--emerald);
  padding: 100px;
}
.content h2 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
}
.content p {
  font-size: 1em;
  color: white;
  font-weight: 300;
}
