* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  text-decoration: none;
}

img {
  max-width: 100%;
}
body {
  width: 100%;
  height: 100vh;
  background-image: url(./pexels-mikael-blomkvist-6476771.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  background-color: rgba(15, 14, 15, 0.788);
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  padding-inline: 5rem;
}

nav ul li {
  display: inline-block;
  padding-inline: 20px;
  font-weight: bold;
}

nav ul li a {
  color: white;
}
a:hover {
  color: pink;
  transition: 0.3s;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  color: white;
}
.content h1 {
  margin-bottom: 1rem;
  color: palevioletred;
}

.content p {
  padding-inline: 15rem;
  font-size: 20px;
  text-align: center;
  line-height: 1.8rem;
}
button {
  border-radius: 2rem;
  margin-top: 1rem;
  width: 10rem;
  height: 2.5rem;
  background-color: rgb(228, 97, 126);
  color: white;
  border: none;
}

.form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  font-weight: bold;
}

/*.hero {
  width: 100%;
  height: 100vh;
  background-image: url(./pexels-mikael-blomkvist-6476771.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}*/
