html,
body {
  height: 100%;
  margin: 0;
  font-family: monospace;
}
#content {
  min-height: 100%;

  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -50px;
}
.footer {
  background-color: #ff00fe;
  height: 50px;
  padding-left: 1em;
}
.footer,
.push {
  height: 50px;
}

.responsive {
  width: 100%;
  height: auto;
}

.btn-primary {
  color: #fff;
  background-color: #81007f;
  border-color: #81007f;
  margin-bottom: 1em;
}

.textbox {
  font-family: monospace;
  color: #ead7d7;
  font-size: 20px;
}
.textbox h1 {
  color: #81007f;
}
.iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.home-page-button {
  background-color: black;
  margin-right: 1em;
  margin-top: 1em;
}
/*navbar*/
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
  background-color: purple;
}

.navbar-light .navbar-nav .nav-link {
  color: #fdfe00;
  font-family: monospace;
  text-transform: uppercase;
  margin-top: 12px;
  margin-right: 22px;
}
.navbar-light .navbar-nav .nav-link:hover {
  font-size: larger;
  color: white;
}

.navbar-light .navbar-nav .nav-item:hover {
  color: white;
}
/*swap logo to other side on smaller screen*/
/*on screens over 991 wide*/
/* @media (min-width: 991px) { */
.navbar-preceded-with-logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
/* } */

/* variable width for navbar container */
/* On screens that are 991px wide or less */
@media screen and (max-width: 991px) {
  .variable-width {
    width: none;
  }
}
/*on screens over 991 wide*/
@media screen and (min-width: 991px) {
  .variable-width {
    width: 100%;
  }
}

/* @media screen and (min-width: 991px) { */
/* .facebook-container {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 100%;
    height: 50px; /* Height of the footer */
/* display: flex;
    justify-content: flex-end;
    padding-left: 1em;
    padding-top: 1em; */
/* } */
*/
/* } */

/* @media screen and (max-width: 991px) { */
  .facebook-container {
  position: fixed;
  padding: 10px 10px 0px 10px;
  bottom: 71;
  width: 100%;
  height: 50px; /* Height of the footer */
  display: flex;
  justify-content: flex-end;
  padding-left: 1em;
  padding-top: 1em;
}
/* } */

/* form */
.control-label {
  color: white;
}

.recent {
  display: none;
}
.alert-success {
  color: #155724;
  background-color: #fefd08;
  border-color: #ff00fe;
}

/*modals*/
/*on screens over 991 wide*/
@media (min-width: 991px) {
  .modal-dialog {
    max-width: 750px;
    margin: 1.75rem auto;
  }
}

/*on screens under 991 wide*/
@media (max-width: 991px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}

@media (max-width: 767px) {
  .modal-dialog {
    max-width: 439px;
    margin: 1.75rem auto;
  }
}

@media (max-width: 500px) {
  .modal-dialog {
    max-width: 300px;
    margin: 1.75rem auto;
  }
}

.modal-content {
  background-color: #41073f;
  color: white;
  font-family: monospace;
}

.modal-footer {
  border-top: none;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ead7d7;
}
.modal-close:hover {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
}

.modal-body {
  color: #ead7d7;
}

.product-text {
  padding: 20px;
  font-size: 20px;
}

.margin-bottom {
  margin-bottom: 1.5em;

  border: 1px solid grey;
  border-radius: 2px;
  padding: 24px;
}
