* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  height: 100%;
}

h1, h2, h3, h4, p {
  color: white;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.logo {
  color: white;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 28px;
}

nav ul li a:hover {
  transform: scale(1.2);
  color: #ff7b00;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.background-image {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  top: 0;
  left: 0;
}

.cta {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.cta h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.btn-listen {
  background: black;
  padding: 10px 25px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.socials {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
  font-size: 25px;
}

.socials a {
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: #ff7b00;
}
