:root {
  --wesbos: #ffc600;
}

header {
  background-color: rgba(0, 0, 0, 0.8); /* Dark background for the header */
  padding: 20px 0; /* Padding for header */
  text-align: center; /* Center text in the header */
}

.header-container {
  max-width: 800px; /* Max width for the header container */
  margin: auto; /* Center the header container */
}

.logo {
  width: 100px; /* Logo width */
  margin-bottom: 10px; /* Space below the logo */
}

h1 {
  font-size: 40px; /* Font size for the title */
  font-family: 'Cursive'; /* Font family for the title */
  color: var(--wesbos);
  margin: 5px 0; /* Margin for the title */
}

p {
  font-size: 18px; /* Font size for the tagline */
  color: #fff; /* Color for the tagline */
  margin: 5px 0; /* Margin for the tagline */
}

nav ul {
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove padding */
}

nav ul li {
  display: inline; /* Display list items inline */
  margin: 0 15px; /* Space between navigation items */
}

nav ul li a {
  color: #fff; /* Color for links */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Bold links */
}

nav ul li a:hover {
  color: var(--wesbos); /* Color change on hover */
}

.menu {
  display: none; /* Hidden by default */
}

.menu--is-visible {
  display: grid; /* Show the menu when visible */
}

@media (min-width: 768px) {
  .menu {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
  }
}

@media (max-width: 768px) {
  .menu2-toggle {
    display: block; /* Show hamburger menu on mobile */
  }

  .menu2-toggle .bar {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px auto;
    background-color: white;
  }

  nav ul {
    display: grid;
  } 
}

.item__header {
  display: flex;
  align-items: baseline;
}

.item__title {
  font-size: 20px; /* Corrected to use font-size property */
  font-family: Arial, sans-serif; /* Added fallback font */
  color: var(--wesbos);
  letter-spacing: 2px;
  margin: 0;
}

.item__dots {
  flex: 1;
  border-bottom: 1px dashed #aaa;
  margin: 0 15px;
}

.item__price {
  color: var(--wesbos);
  font-size: 20px; /* Corrected to use font-size property */
  font-family: Arial, sans-serif; /* Added fallback font */
}

.item__description {
  margin-bottom: 40px;
}

.buttons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .buttons-container {
    margin-bottom: 60px;
  }
  .mobile-nav {
    display: block; /* Show mobile nav on larger screens */
  }
}

@media (max-width: 768px) {
  .buttons-container {
    margin-bottom: 60px; /* Consistent margin */
  }
  .mobile-nav {
    display: none; /* Hide mobile nav on smaller screens */
  }
}

.button {
  margin: 5px 15px;
  padding: 10px 20px;
  border: 1px solid var(--wesbos);
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

.highlight {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: var(--wesbos);
  border-radius: 3px;
  z-index: -1;
  transition: 0.24s;
}

* {
  box-sizing: border-box; /* Use border-box for all elements */
}

body {
  margin: 0;
  display: block; /* Changed to flex for proper centering */
  align-items: center;
  justify-content: center; /* Center content horizontally */
  min-height: 100vh; /* Ensure the body takes up the full height of the viewport */
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://i.imgur.com/xdbUU0C.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: 'Arial', sans-serif; /* Added fallback font */
  color: #fff;
}

.wrapper {
  width: 100%; /* Adjusted to cover the full width of the viewport */
  max-width: 800px; /* Adjust according to your design */
  margin: auto; /* Center the wrapper horizontally */
  padding: 20px;
}

h2 {
  display: inline-block;
  border-bottom: 4px solid var(--wesbos);
  margin-top: 0;
  font-size: 50px; /* Changed to font-size property */
  font-family: cursive; /* Specified font family */
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff; /* Primary button color */
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 16px; /* Corrected to use font-size property */
  cursor: pointer;
}

button:hover {
  background-color: #0056b3; /* Button hover color */
}
