:root {
  --pizza-red: #ff0000;
  --pizza-red-hover: #a2160f;
  --pizza-orange: #f53b1f;
}

* {
  font-family: 'Quicksand', sans-serif;
}

body {
  background: -moz-linear-gradient(-45deg, #1e5799 0%, #000000 0%, #d3d3d3 88%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #1e5799 0%,#000000 0%,#d3d3d3 88%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #1e5799 0%,#000000 0%,#d3d3d388%);
}

.splash {
  background: -moz-linear-gradient(-45deg, #1e5799 0%, #000000 0%, #d3d3d3 88%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #1e5799 0%,#000000 0%,#d3d3d3 88%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #1e5799 0%,#000000 0%,#d3d3d388%);
}

.splash-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  /*background-image: url('../assets/images/pizza-love.svg');*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
  font-family: 'Lobster', cursive;
  text-align: center;
  margin-top: -50px;
}

.bg-color {
  background-color: #222222;
}

iframe {
  width: 100%;
  margin: 25px auto;
  border: 0;
}

.form-group input, .form-group select {
  border: none;
  border-radius: 25px;
  box-shadow: 2px 4px 6px 2px  rgba(255, 45, 0, 0.15);
}

.btn-default {
  background-color: var(--pizza-red);
  color: #fff;
  border: none;
  border-radius: 40px;
}

.btn-default:hover {
  background-color: var(--pizza-red-hover);
  color: #fff;
}

.pizza-brand {
  font-weight: 500;
  color: var(--pizza-red);
}

.pizza-main {
  font-weight: 700;
  color: var(--pizza-red);
}

.pizza-title {
  font-weight: 700;
  color: var(--pizza-orange);
}

.splash-brand {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

header {
  background-color: #222;
  background-size: cover;
  background-repeat: no-repeat;
}

header p {
  font-size: 30px;
  padding-top: 10px;
  color: #fff;
}

#map iframe {
  height: 40vh;
}

.collection {
  display: block;
  height: 25vh;
  padding: 10px;
}

.collection a {
  box-shadow: 2px 4px 6px 2px  rgba(255, 45, 0, 0.3);
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: .25s;
  position: relative;
}

.caption {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 96, 39, 0.9);
  opacity: 0;
  transition: .4s;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  color: #fff;
  font-size: 1.25em;
}

.caption img {
  width: 30%;
  max-width: 75px;
}

.modal-content {
  border-radius: 20px;
}

.modal-header, .modal-footer {
  border: none;
}

.modal-body iframe {
  height: 30vh;
  margin-top: 0;
}

@media (min-width: 768px) {
  .navbar-form {
    width: 50%;
  }

  .navbar-form .form-group, .navbar-form .form-control {
    width: 100%;
  }
}
