body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 18px;
}

.page-background {
  position: fixed;
  inset: 0;
  background: url("../media/price.jpg") center/cover no-repeat;
  z-index: -2;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

h1 {
  text-align: center;
  font-size: 100px;
  margin-bottom: 50px;
}

.nav {
  width: 90%;
  margin: 0 auto 36px;
  background-color: #b81515;
  border-radius: 12px;
  height: 65px;
  display: flex;
  align-items: center;
  padding: 0 36px;
  justify-content:space-around ;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 22px;
}

h3 {
  text-align: center;
  font-size: 32px;
}

nav a:hover {
  background: rgb(49, 49, 243);
  transition: 2s;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 50px;

}

a {
  text-decoration: none;
  color: #ffffff;
}


@media (max-width: 600px) {

  body {
    font-size: 16px;
  }


  .container img {
    width: 120px;
    height: auto;
  }

  h1 {
    font-size: 48px; 
    margin-bottom: 20px;
  }

  
  .nav {
    flex-direction: column;
    height: auto;
    padding: 12px;
    gap: 10px;
  }

  .nav a {
    font-size: 18px;
    padding: 10px 14px;
    width: 100%;
    text-align: center;
    border-radius: 6px;
  }

  
  h3 {
    font-size: 22px;
    padding: 0 14px;
  }

  
  .page-background {
    background-size: cover;
    background-position: center;
  }
}
