.navbar {
  background-color: #f8f8f8;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #666;
  border-width: 5px;
}


#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 10%;
  min-height: 10%;
  object-fit: relative;
  z-index: -1;
}


:root {
  --bg-color: #ffffff93;
  --text-color: #000;
  --btn-bg: #0071e3;
  --btn-hover: #005bb5;
  }

body.dark {
  --bg-color: #000;
  --text-color: #fff;
  --btn-bg: #444;
  --btn-hover: #888;
}


* {
  margin: 5px;
  padding: 5px;
  box-sizing: border-box;
  border-width: 5px;
}

body {
  background-color: #ffffff93;
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
 }


.container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
}

.hero-content h1 {
  font-size: 48px;
  margin: 0;
}

.hero-content p {
  font-size: 20px;
  margin: 10px 0;
}

.buttons a {
  margin: 0 10px;
  padding: 5px 10px;
  background-color: #f8f8f8a1;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 5px 5px;
  background-color: #fff;
  
}

.product {
  width: 45%;
  margin-bottom: 40px;
  text-align: center;
  
}

.product h2 {
  font-size: 32px;
}

.product p {
  font-size: 16px;
}


.video {
width: 5px;
height: 5px;
}

.footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  color: #666;
}


@media (min-width: 768px) {
  .hero h2 {
    font-size: 3rem;
  }
}
