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

.hero {
  background-image: url(image.png);
  height: 100vh;
  background-size: cover;
  color: white;
}

header {
  padding: 52px 40px;
  display: flex;
  align-items: center;
  font-size: 12px;

}

:link, :visited {
  color: inherit;
  text-decoration: none;
}



a:hover {
  color: orangered;
}

nav+a {
  margin-left:auto;
  margin-right: 40px;

}

button {
  text-transform: uppercase;
  border: 1px solid orangered;
  background: none;
  color: inherit;
  border-radius: 99px;
  width: 160px;
  height: 40px;
  cursor: pointer;
  font-size: inherit;
}

nav {
  padding: 52px 40px;
}

ul { 
  display: flex;
  gap: 40px;
  list-style: none;

}

.content {
  position:absolute;
  top: 44vh;
  left: 15vh;
}

h1 {
  font-size: 72px;
  margin: 0;


}

p {
  color: #9DA4BD;
}