* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #F4D8AE;
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  background-attachment: fixed;
  font-family: "Open Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container {
  padding: 10vh;
  position: relative;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.75s ease-out;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.card {
  background-color: white;
  transition: all 0.75s;
  max-width: 700px;
  border-radius: 30px;
  padding: 4vh 5%;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.burdog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5vh;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.burdog img {
  width: 50%;
  z-index: 2;
  transition: all 0.75s ease-out;
}

.circle {
  background-color: transparent;
  background-image: url("../img/burdog_logo.svg");
  background-repeat: no-repeat;
  margin-top: 35rem;
  text-align: center;
  width: 33rem;
  height: 33rem;
  position: absolute;
  z-index: 1;
}

.info {
  text-align: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.info h1 {
  font-family: "Cooper Black", sans-serif;
  color: #000;
  font-size: 100px;
  font-size: clamp(100px, 8vw, 110px);
  margin-top: 18rem;
  transition: all 0.75s ease-out;
  transform-style: preserve-3d;
}

.info h3 {
  font-family: "Amatic SC";
  font-size: 50px;
  font-size: clamp(50px, 2vw, 60px);
  margin-top: 5rem;
  color: #fa9600;
  font-weight: lighter;
  transition: all 0.75s ease-out;
}

.info h1 a {
  text-decoration: none;
  color: #000;
}

.info h1 a:hover {
  color: #de4e50;
}

.menu {
  font-family: "Amatic SC";
  font-size: 50px;
  font-size: clamp(50px, 2vw, 60px);
  margin-top: 5rem;
  color: #fa9600;
  font-weight: lighter;
  transition: all 0.75s ease-out;
}

.menu button {
  font-family: "Amatic SC", sans-serif;
  width: 15%;
  max-width: 100px;
  font-size: clamp(24px, 3vw, 24px);
  padding: 0.8em 4em 0.8em 3em;
  background: #443763;
  border: none;
  color: white;
  border-radius: 30px;
}

.card.has-transform {
  transition: all 100ms linear;
}

.title.has-transform {
  transform: translateZ(150px) !important;
}

.burdog img.has-transform {
  transform: translateZ(200px) rotateZ(5deg) !important;
}

.info h3.has-transform {
  transform: translateZ(125px) !important;
}

.menu.has-transform {
  transform: translateZ(150px) rotateX(380deg) !important;
}

/*Menu
responsive restaurant menu
CodePen by Kholoud Ameen*/
.wrapper {
  padding: 2em 1em;
  background: #fff;
  -moz-columns: 100px 1;
       columns: 100px 1;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 400px) {
  .wrapper {
    padding: 1em calc(50% - 300px);
  }
}

.item {
  border-bottom: 2px dotted #c5c5c5;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

span {
  font-family: "Amatic SC", sans-serif;
  font-size: 30px;
  margin-bottom: -4px;
  padding: 2px;
  color: #000;
}

.price {
  font-family: "Amatic SC", sans-serif;
  font-size: 30px;
  color: #000;
}

sup {
  font-family: "Amatic SC", sans-serif;
  font-size: 16px;
  color: #fa9600;
  background: #fff;
  padding: 2px;
}


.list-title {
  font-family: "Amatic SC", sans-serif;
  font-size: 50px;
  color: #fa9600;
  margin-bottom: 10px;
}

.list {
  margin-bottom: 40px;
}

.list-ingredienti {
  font-family: "Amatic SC", sans-serif;
  font-size: 20px;
  margin-bottom: 3px;
  background-color: transparent;
  padding: 2px;
  color: #000;
}

.allergeni {
  padding: 2em 1em;
  background: #fff;
  -moz-columns: 100px 1;
       columns: 100px 1;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.allergeni-title {
  font-family: "Amatic SC", sans-serif;
  font-size: 35px;
  color: #fa9600;
  margin-bottom: 5px;
}
.allergeni-subtitle {
  font-family: "Amatic SC", sans-serif;
  font-size: 25px;
  color: #000;
  margin-bottom: 10px;
}

.allergeni-fine {
  font-family: "adelline", sans-serif;
  font-size: 50px;
  text-align: center;
  color: #fa9600;
  margin-bottom: 25px;
  font-weight: lighter;
}

.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background-color: transparent;
  color: white;
  text-align: center;
}

a {
  color: #fa9600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}