/******************************************
/* CSS
/*******************************************/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Box Model Hack */
* {
  box-sizing: border-box;
}

body {
  background: url("../img/bar.jpg");
  font-family: "Montserrat";
  background-size: cover;
}

/******************************************
/* LAYOUT
/*******************************************/
img {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 475px;
  padding: 25px;
}

ul {
  list-style-type: none;
}

.container {
  position: absolute;
  margin: 0;
  width: 100%;
  background: #f4f5f4;
  min-height: 600px;
}

.white-box {
  width: 500px;
  height: 100px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.3);
  padding: 30px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/* Box/Container styling */

.bar-name-container {
  border: 4px solid #555555;
  border-radius: 5px;
  background-color: #dbdbdb;
  height: 75px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: -5px 5px 2px rgb(0, 0, 0, 0.4);
  font-size: 20px;
}

.choose-drink {
  border: 4px solid #555555;
  border-radius: 5px;
  background-color: #dbdbdb;
  height: 200px;
  padding: 0 20px;
  box-shadow: -5px 5px 2px rgb(0, 0, 0, 0.4);
  text-align: center;
  font-size: 18px;
}

.drink {
  border: 4px solid #555555;
  border-radius: 5px;
  background-color: #dbdbdb;
  box-shadow: -5px 5px 2px rgb(0, 0, 0, 0.4);
  text-align: center;
  max-width: 40%;
  max-height: 500px;
}

.ingredients-container {
  display: flex;
  gap: 10px;
}
.ingredients-container ul {
  margin: 0;
  padding: 0;
}

.recipe-container {
  border: 4px solid #555555;
  border-radius: 5px;
  background-color: #dbdbdb;
  box-shadow: -5px 5px 2px rgb(0, 0, 0, 0.4);
  width: 25%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0 20px;
}

.drink-ingredient-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 36px;
  align-items: flex-start;
}

input {
  font-size: 25px;
  margin-bottom: 20px;
  border: 3px solid rgb(48, 48, 49);
  border-radius: 10px;
  padding: 5px;
  text-align: center;
}

.title-container {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

#drink-name-instructions {
  display: inline-block;
}

.hidden {
  display: none;
}

#drink-name {
  margin: 0px;
  padding-top: 20px;
}

.input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

input {
  padding: 0;
  margin: 7px 15px;
}

/* Buttons */
a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

a:hover {
  background-color: #ddd;
  color: black;
}

.previous {
  background-color: #f1f1f1;
  color: black;
}

.next {
  background-color: #f1f1f1;
  color: black;
}

.round {
  border-radius: 50%;
}

#button,
#button2,
button {
  background-color: black;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  background-color: #555555;
  min-width: 180px;
  max-width: 180px;
  border-radius: 10px;
}

#button:hover,
#button2:hover,
.button:hover {
  background-color: black;
  color: white;
  transition-duration: 0.4s;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/
