@font-face {
  font-family: apple-font;
  src: url(./assets/sf-pro-text_regular.woff2);
}

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

html,
body {
  height: 100%;
  width: 100%;
}

#main {
  height: 100%;
  width: 100%;
  background-color: black;
}

#nav {
  height: 60px;
  width: 100%;
  background-color: rgb(24, 24, 24);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#nav h4 {
  font-weight: 300;
}

#center {
  height: 85%;
  width: 100%;
  background-image: url(https://www.apple.com/v/home/ch/images/heroes/iphone-17-pro/hero_iphone_17_pro__bknyzxfk2agi_large.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px;
}

#center h1 {
  color: white;
  font-size: 60px;
  font-weight: 600;
}

#center h5 {
  color: white;
  font-size: 30px;
  font-weight: 300;
}

#links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

#links button {
  background-color: royalblue;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  outline: none;
  border: none;
}

#links button:nth-child(2) {
  border: 0.1rem solid royalblue;
  background-color: transparent;
  color: royalblue;
}