/*Basics*/

* {
  box-sizing: border-box;
}

.bold {
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

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

.column {
  flex-direction: column;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Maven Pro", sans-serif;
}

.btn-large {
  border-radius: 10%;
}

.btn-large {
  font-size: 1.5rem;
}

/*Homepage*/

#homepage {
  background: url("./img/good-soul-shop-DlO0yz4U67A-unsplash.jpg") no-repeat
    center 90% / cover;
  background-size: 80%;
  width: 100%;
  height: 100vh;
}

#homepage h1 {
  font-size: 10em;
  font-weight: bold;
  margin-bottom: 1rem;
}

#homepage p {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 4rem;
}

/*Input Section*/

#input {
  display: none;
  padding: 3rem;
  width: 80%;
  border-radius: 6%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: relative;
  opacity: 1;
}

#diet {
  display: flex;
  padding: 1rem 0rem;
  margin: 1rem 0rem;
  align-items: center;
  justify-content: space-around;
}

#input h5 {
  padding-top: 2rem;
  line-height: 3rem;
}

label {
  font-size: 1rem;
  color: black;
}

/* label underline focus color */
input[type="text"]:focus {
  border-bottom: 1px solid#b2dfdb !important;
  box-shadow: 0 1px 0 0 #b2dfdb !important;
}

#ingredientsAdded {
  display: block;
}

.ingredient {
  padding: 0rem 2rem;
  font-weight: lighter;
  font-style: italic;
}

.ingredient i {
  margin-left: 1rem;
  margin-top: 1rem;
}

i:hover {
  cursor: pointer;
}

#findRecipe {
  border-radius: 13%;
  font-size: 1rem;
  font-weight: normal;
}

#intolerances {
  display: flex;
  padding: 1rem 0rem;
  margin: 1rem 0rem;
  align-items: center;
  justify-content: space-around;
}

/*Carousel Section*/

.card {
  padding: 1rem;
  border-radius: 15%;
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

#carousel {
  /* background: url("./img/katie-smith-uQs1802D0CQ-unsplash.jpg") no-repeat center
    center / cover; */
  background-size: 90%;
  width: 80%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
}

.carousel {
  height: 100%;
  width: 145%;
  left: -45%;
}

.carousel .carousel-item {
  top: -30%;
}

#warning {
  color: #b2dfdb;
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
  padding-top: 1.3rem;
}

.box-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  height: 100%;
}

.box-vertical h3 {
  font-weight: bold;
  font-size: 1.1rem;
}

.box-vertical h4 {
  text-decoration: underline;
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: bold;
}

.box-vertical p {
  font-style: italic;
  font-size: 0.8rem;
}

.box-vertical li {
  font-size: 0.5rem;
  list-style: none;
  padding-top: 0.5rem;
  letter-spacing: 1px;
}

.instructions {
  font-size: 0.65rem important!;
}
