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

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

.page-logo a{
  padding: 10px;
  font-family: "Oleo script", sans-serif;
  color: rgb(245, 243, 160);
  font-size: 50px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.header-right{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-right li{
  padding-left: 20px;
  list-style: none;
}

.header-right li a {
  color: rgb(255, 251, 0);
  text-decoration: none;
  font-size: 20px;
  padding: 12px;
  text-shadow: 1px 1px 2px rgb(0, 0, 0,0.5);
  border-radius: 6px;
}

.header-right nav a:hover{
  color: rgb(77, 77, 77);
  background-color: rgb(255, 251, 0);
}

#hero{
  height: 800px;
  background-image: url(./extra-files副本/ocean.jpg);
  background-position: center;
  background-size: cover;
}


.hero-content {
  width:900px;
  background-color: rgb(51, 47, 47,0.8);
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 8px;
  text-align: center;
  padding: 50px 0;
  margin: 0 auto;
  position: relative;
  top: 200px;
}

.hero-content h1{
  color: white;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  margin: 0;
}

.hero-content p{
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 32px;
}

.hero-content a{
  text-decoration: none;
  background-color: rgb(255, 251, 0);
  padding:12px 24px;
  color:black;
  font-size:24px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
}

.hero-content a:hover{
  background-color:rgb(255, 237, 0);
}


footer {
  background: linear-gradient(70deg,rgb(24,24,24),rgb(25,29,29));
  padding: 24px;
}

footer ul{
  display: flex;
  justify-content: center;
  
}

footer li{
  width: 80px;
  height: 80px;
  margin: 0 50px;
}

footer img{
  width: 100%;
  height: 100%;
}
