@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 800px;
  background-image:url(./image/resort.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  font-family: "Inter", sans-serif;
  padding: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.header-main {
  width: 100%;
  height: 80px;
  color: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content:flex-end;
  padding: 0 20px;
  position: fixed;
}

.header-nav ul {
  display: flex;
}

.header-nav li {
  margin: 0 10px;
}

.header-nav a {
  color: #d9d9d9;
  font-weight: 700;
  font-size: 16px;
  transition: .5s;
}

.header-nav a:hover {
  color: #1ac2e9;
} 