* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}

.nav-bar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.menu-icon img {
  height: auto;
  width: 30px;
}

.top-screen-blowup {
  width: 100%;
  display: flex;
  justify-content: center;
}

.valorant-blowup {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.main-content {
  max-width: 900px;
  margin: 40px auto 60px auto;
  text-align: center;
  padding: 0 20px;
}

.h1 {
  font-size: 120px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}

.h3 {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.body-p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.button-val {
  padding: 18px 40px;
  background-color: #ff4655;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.25s;
}

.button-val:hover {
  transform: scale(1.05);
  background-color: #ff5c6b;
  cursor: pointer;
}

@media (max-width: 600px) {
  .h1 {
    font-size: 64px;
  }

  .h3 {
    font-size: 24px;
  }

  .body-p {
    font-size: 18px;
  }

  .button-container {
    flex-direction: column;
    gap: 16px;
  }
}
