/* CSS Styles */


/* This means "title" in fancyspeak */
.masthead {
  font-family: 'Arial',sans-serif;
  font-size: 90px;
  line-height: 48px;
  font-weight: 400;
  text-align: center;

}

/* Main text */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

/*Timebox*/
.timebox{
    display : flex;
    gap : 60px;
    justify-content : center;
    align-items : center;
}
.time{
    font-size : 48px;
    font-weight : bold;
    text-align : center;
}

/* Text Overlay */
.overlay {
  min-height: 100%;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* Background image styling */

body {
  background-image: url("../images/sunrise.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* standard naming convention for when you have something centered */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* form section */
.form-section {
  padding: 64px 24px;
  display: flex;
  justify-content: center;
}

/* Layout helpers used by the landing page */
img {
  border: 0;
  outline: none;
  text-decoration: none;
  display: block;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
}

@media only screen and (max-width: 620px) {
  .container {
    width: 100% !important;
  }

  .stack {
    display: block !important;
    width: 100% !important;
  }

  .w-50 {
    display: block !important;
    width: 100% !important;
  }

  .px-24 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .py-24 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .masthead {
    font-size: 30px !important;
    line-height: 36px !important;
  }
}

