/*
Navigationbar
*/
@font-face {
  font-family: 'Futura';
  src: url('Futura Condensed Extra Bold.otf') format('opentype');
}

body {
  background-color: black;
}


h2 {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav {
    background-color: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    height: 50px;
    margin-left: 20%;
}

.nav-links {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin: 0px;
    padding: 0px;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.nav-links a {
    color: white;
    font-size: 280%;
    font-family: futura;
    text-decoration: none;
}

.nav-links a:hover{
  color: #707070;
}

.search-bar {
    margin-left: auto;
    position: relative;
    margin-right: 2%;
}

.search {
    position: absolute;
    top: 50%;
    right: 87%;
    transform: translate(0px, -50%);
    z-index: 1;
    width: 10%;
    opacity: 0.5;
}

input[type="text"] {
    width: 90%;
    font-family: "OCR A", sans-serif;
    padding: 4% 2% 4% 15%;
}

.account, .cart {
    height: 50px;
    margin-left: 3%;
    margin-right: 1%;
}


.white-box {
    position: relative;
    width: 72%;
    height: 180%;
    background-color: transparent;
    border-radius: 30px;
    overflow: hidden;
    margin: 5% auto;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .image-button-left,
  .image-button-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    background-color: transparent;
    width: 2%;
    height: auto;
    opacity: 50%;
  }

  .image-button-left:hover,
  .image-button-right:hover {
    opacity: 100%;
  }
  
  .image-button-left {
    left: 2%;
  }
  
  .image-button-right {
    right: 2%;
  }
  
  .slide-to-left {
    transform: translateX(100%);
  }
  
  .slide-to-right {
    transform: translateX(-100%);
  }

  .image-container-on {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 2%;
    opacity: 99%;
}

.image-container-on img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-left: 5%;
  margin-right: 5%;
}

.image-container-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-container-select img {
  width: 30%;
  height: auto;
}



.divider {
    border: none;
    border-top: 2px solid white;
    height: 2px;
    margin-top: 4%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 4%;
}

.container-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}

.box {
    width: 25%;
    height: 400px;
    background-color: #707070;
    border-radius: 10px;
}

.circle-rectangle-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.rectangle {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: white;
}

.circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25%; 
  height: 100%;
  background-color: white;
  border-radius: 50%;
}


.rectangle-2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: white;
}






  
  
  

