* {
    margin: 0px;
    padding: 0px;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header {

}

#HeadNav {
    background-color: black;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
}


#HeadIconsLeft {
    color: white;
    list-style: none;
    display: flex;
    gap: 50px;
    margin-right: 500px;
}

#HeadIconsRight {
    color: white;
    list-style: none;
    display: flex;
    gap: 50px;
    margin-left: 500px;
}

i {
    font-size: 35px;
}

a {
    color: white;
}

#HeadLogo {
    height: 100px;
    width: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 50px;
  margin-bottom: 441px;
  margin-top: 100px;
}

.product-image {
  width: 400px;
  height: 400px;
  border: 3px solid black;
  border-radius: 15px;
}

.product-details {
  max-width: 400px;
  font-family: Arial, sans-serif;
}

.product-details h1 {
  font-size: 3rem;
  margin: 0 0 20px;
}

.product-details p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.product-details .price {
  font-weight: bold;
  font-size: 1.5rem;
}

.product-details select {
  width: 100%;
  padding: 10px;
  font-size: 1.2rem;
  margin: 20px 0;
}

.add-to-cart-btn {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 15px 30px;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background-color: #333;
}

#FootNav {
    background-color: black;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
}

#FootIcons {
    color: white;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 1100px;
}

#Line {
    border: 2px solid white;
    border-radius: 2px;
}

#Contact {
    text-decoration: none;
    border: 10px solid white;
    padding: 10px;
}

#FootLogo {
    height: 70px;
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1150px;
}
