@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #abd0a2;
  color: #fff;
  padding: 20px;
  width: auto;
}

h1 {
  margin: 0;
}

h2 {
  color: #abd0a2;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

h2 {
  color: #333;
}

ul {
  list-style-type: none;
  padding: 0;
}

li a {
  color: #333;
  text-decoration: none;
}

footer {
  background-color: #abd0a2;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: auto;
}

.hero {
  height: 100vh;
  background-image: url("img/julentto-photography-1Nqjjo8Zrko-unsplash.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust overlay opacity */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 6rem;
  margin: 0;
}

.hero h3 {
  font-size: 1.5rem;
}

.hero-copyright {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.hero-copyright a {
  color: white;
}
