* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}
/* RESET */
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
/* ----------------------------------------------------- */

/* ----------------------------------------------NAVIGATION */
nav {
  background-color: #2a2a2a;
  padding: 10px;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

nav ul li,
a {
  color: rgb(189, 189, 189);
}
/* ----------------------------------------------------- */

/* ----------------------------------------HERO SECTION */

.hero {
  height: 70%;
  width: 100%;
  background-image: url(https://www.apple.com/v/home/ch/images/heroes/iphone-17-pro/hero_iphone_17_pro__bknyzxfk2agi_medium.jpg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  gap: 0.8rem;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
}

.hero h3 {
  font-size: 35px;
  font-weight: 400;
}
/* ---------------------------------BUTTONS */

.buttons {
  display: flex;
  gap: 0.8rem;
}

.buttons button {
  padding: 10px 22px;
  border-radius: 22px;
  background: none;
  font-size: 16px;
  cursor: pointer;
}
.buttons button {
  border: 1px solid #2727ebb9;
  color: blue;
}
.buttons button:first-child {
  background-color: royalblue;
  border: none;
  font-weight: 500;
  color: white;
}
/* ------------------------------------------------------IMAGE */
img {
  border: 1px solid red;
}
/* ----------------------------------------------------- */
