html {
  background-color: #fcfcfc;
}

.titanic-dataset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.the-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

h1 {
  color: #2b2b2b;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}

h3 {
  text-transform: uppercase;
}

p.text {
  margin-bottom: 5px;
}

h1 .titanic {
  color: #ab3e32;
  font-size: 1.5em;
  font-weight: 800;
}

.heading {
  color: #ab3e32;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
}

p.toggle-label {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 5px;
}

.passenger-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 45px;
  margin-left: 45px;
}

.square-styles {
  color: white;
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23px;
  height: 23px;
  background-color: #2b2b2b;
  margin: 1px;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.toggle-buttons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}

.toggle-div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-right: 20px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2b2b2b;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #ab3e32;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #deb443;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #deb443;
          box-shadow: 0 0 1px #deb443;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

button {
  height: 30px;
  border-radius: 5px;
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.titanic-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.titanic-image-div {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-animation: boatAnimation 100s infinite;
          animation: boatAnimation 100s infinite;
}

.titanic-image {
  width: 35vw;
  margin-top: 15px;
}

.summary {
  font-family: "Montserrat", sans-serif;
}

h3 {
  color: #ab3e32;
}

@-webkit-keyframes boatAnimation {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(1000px, 0, 0);
            transform: translate3d(1000px, 0, 0);
  }
}

@keyframes boatAnimation {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(1000px, 0, 0);
            transform: translate3d(1000px, 0, 0);
  }
}
/*# sourceMappingURL=styles.css.map */