:root {
    --background-color: #0f0b0b;
    --text-color: #e6e6e6;
    --font-family: "Times New Roman", san-serif;
    --font-size: 16px;
    --span-color: #ff0000;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: #0f0b0b;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.6;
    overflow-y: hidden;
  }
  
  /* navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--background-color);
    /* position: fixed; */
    width: 100%;
    border-bottom: 1px #616060 solid;
  }
  
  .logo {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-family);
    cursor: pointer;
    padding: 0;
    margin: 0;
  }
  
  .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-family);
    cursor: pointer;
  }
  
  .slash {
    color: var(--span-color);
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    text-decoration: none;
    list-style-type: none;
  }
  
  .nav-links li a {
    color: var(--text-color);
    text-decoration: none;
  }
  
  .nav-links li a:hover {
    color: #616060;
  }
  
  .nav-links li a:nth-child(0):active {
    color: #fff;
  }
  
  .cart__img {
    color: var(--text-color);
    cursor: pointer;
  }
  
  /* hero section */
  .hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    /* background-color: black; */
    color: white;
    padding: 0 50px;
  }
  
  .hero__container {
    display: flex;
    flex-direction: row;
    text-align: left;
    justify-content: left;
  }
  
  .hero__title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 2rem;
    font-family: var(--font-family);
  }
  
  .hero__text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #838383;
  }
  
  .hero__btn {
    display: flex;
  }
  
  .hero__btn--group {
    display: flex;
    gap: 20px;
  }
  
  .btn--primary {
    background-color: white;
    padding: 20px;
    color: black;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    border-radius: 10px;
  }
  
  /* .btn--primary:hover {
    background-color: var(--span-color); */
  /* color: white;
  } */
  
  .btn--secondary {
    background-color: transparent;
    padding: 20px;
    color: white;
    text-align: center;
    text-decoration: none;
    padding-left: 50px;
    cursor: pointer;
  }
  
  .hero__img {
    width: 500px;
    height: 500px;
    margin-left: 20px;
  }
  
  .hero__img img {
    width: 38em;
  }
  
  /* .btn--secondary:hover {
    background-color: var(--span-color); */
  /* color: white;
  } */

/* media quiers */
@media screen and (max-width: 1024px){
  
  .hero__img img {
    width: 27em;
  }

  .btn--primary, 
  .btn--secondary{
    font-size: 16px;
    padding: 15px;
  }
}

@media screen and (max-width: 768px){
  .navbar {
    display: flex;
    flex-direction: column;
    width: 100%;

  }
  .hero{
    height: 125vh;
  }
  .hero__container {
    display: flex;
    flex-direction: column;
  }
  .hero__img img {
    width: 30em;
  }
}

@media screen and (max-width: 425px){
  .navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .hero{
    height: 125vh;
    width: 70vh;
  }
  .hero__container {
    display: flex;
    flex-direction: column;
  }
  .hero__title{
    font-size: 28px;
  }
  .hero__text{
    font-size: 16px;
  }
  .hero__img{
    width: 303px;
    height: 460px;
  }
  .hero__img img {
    width: 20em;
  }
}

