––* {
  background-color: rgb(0, 32, 66);
  color: rgb(232, 182, 118);
}

.inlineDiv {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: baseline;
  justify-content: center;
  border: solid 2px;
  justify-content: stretch;
}

input {
  width: 200px;
  cursor: pointer;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.2);
}

button {
  padding-left: 20px;
  width: 150px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}

body {
  background-image: url(../img/pizza-background.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

#title {
  color: white;
  text-align: center;
  font-size: 70px;
  font-family: cursive;
  font-weight: bold;
  margin-top: -60px;
  margin-bottom: -10px;
}

#pizza-box {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  width: 274px;
  height: 450px;
  float: left;
  margin: 10px;
  border-radius: 5%;
  opacity: 0;
  animation: appear 1s ease-out 500ms forwards;
}

#card-box {
  padding: 0;
  margin: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 195vh;
}

#pizza-name {
  text-align: center;
  color: #fff;
  font-family: cursive;
  margin: 0;
}

#pizza-ingredients {
  text-align: center;
  color: #fff;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 15px;
  padding-left: 50px;
  padding-right: 50px;
}

#pizza-price {
  text-align: center;
  font-weight: bold;
  color: orange;
  text-align: center;
  font-weight: bold;
  color: orange;
  font-family: cursive;
  font-size: 20px;
  margin: 0;
  margin-top: auto;
}

span.forint {
  font-size: 14px;
  vertical-align: super;
}

#pizza-img {
  text-align: center;
  box-sizing: border-box;
  padding: 40px 40px 0px 40px;
}

.pizza-img {
  width: auto;
  height: 162px;
}

.pizza-bg {
  position: fixed;
  z-index: -1;
  width: 1150px;
  left: 0px;
  top: 0px;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.counter input {
  width: 50px;
  border: 0;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  background: #0052cc;
  color: #fff;
  appearance: none;
  outline: 0;
}

.counter span {
  display: block;
  font-size: 25px;
  padding: 0 10px;
  cursor: pointer;
  color: #b1cc00;
  user-select: none;
}

.bi-cart4 {
  color: white;
  font-size: 35px;
  cursor: pointer;
}

.bi-cart4:active {
  color: #ffffffa6;
}

.bi-arrow-left-square {
  color: white;
  font-size: 35px;
  cursor: pointer;
}

.bi-book {
  color: white;
  font-size: 35px;
  cursor: pointer;
  justify-content: flex-end;
  float: right;
}

#cart {
  display: flex;
  flex-direction: column;
  color: aliceblue;
  align-items: center;
  margin: 10px;
  border-radius: 10px;
  opacity: 0;
  animation: appear 1s ease-out 500ms forwards;
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 600px;
}

form {
  display: flex;
  flex-direction: row;
}

form input {
  width: 150px;
  height: 15px;
  color: aliceblue;
}

.orders {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  width: 274px;
  height: 450px;
  float: left;
  margin: 10px;
  border-radius: 5%;
  opacity: 0;
  color: white;
  animation: appear 1s ease-out 500ms forwards;
  font-size: large;
}

.content {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  padding-left: 20px;
}

.dSelect {
  display: flex;
  justify-content: center;
}

#multiSelect {
  width: 350px;
}