@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Kumbh+Sans:wght@100..900&family=Sriracha&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333333;
}
header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0;
  font-size: 70px;
  font-family: Audiowide;
}
   margin: 0;
    }

   #center {
      margin: 0;
    }
.image {
   width: 200px; 
  height: auto;
  margin-left: 10px; 
  margin-right: 10px;
  text-align: left;
  border-radius: 50%;
    }

#special-deals-button {
  display: block;
  width: 260px; 
  padding: 6px 10px; 
  margin: 10px 0 10px 0;
  color: #9b4dca;
  text-align: left;
  border: 2px solid #9b4dca;
  border-radius: 8px;
  font-size: 1.1em;
  transition: transform 0.2s, box-shadow 0.3s;
}

#special-deals-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.no-underline {
  text-decoration: none;
}
header {
  background: #007acc;
  padding: 20px;
  text-align: center;
}
.button h3 {
   font-size: 20px;
}

header .slogan {
  margin: 10px 0 0;
  color: #ffffff;
  font-family: Sriracha;
}

.navbar {
  background-color: #151515;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
}

.nav-list a:hover {
  background-color: #00d9ff;
  color: #000;
}

.nav-icon {
  margin-right: 8px;
  font-size: 20px;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: #e0f7fa;
  color: #00796b;
  border-bottom: 5px solid #004d40;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  color: #004d40;
}

.container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.button {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 10px 5px 10px 5px;
  background-color: #ffffff;
  color: #007bff;
  border: 2px solid #007bff;
  border-radius: 9px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #007acc;
  color: #ffffff;
  margin-top: 20px;
  border-top: 5px solid #005ea2;
}

footer p {
  margin: 0;
}

em {
  color: floralwhite;
  font-family: Sriracha;
  font-style: italic;
}

.card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card h3 {
  margin: 15px 0;
  color: #007acc;
}

.card p {
  padding: 0 10px 10px;
  color: #333;
}

@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
  }

  .nav-list li {
    margin: 10px 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

.pc-item {
  border: 2px solid #008bff;
  border-radius: 8px;
  padding: 20px;
  margin: 10px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.pc-name {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.prebuilt-pcs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.price {
  font-size: 1.2em;
  font-weight: bold;
  color: green;
  margin-top: 10px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.build-button {
  display: block;
  width: 90%;
  padding: 8px;
  margin: 10px auto;
  border: 2px solid #007bff;
  background-color: #f9f9f9;
  color: #007bff;
  font-size: 1em;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

.build-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.build-button .component-name {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
  font-weight: bold;
  color: #007bff;
}

.build-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.price-range {
  color: green;
  text-align: right;
}