body{
  animation-name: hero-fade;
  animation-duration: 4s;
  margin: 0;
  padding: 0;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
.page-container{
  text-align: center;
}
h1 {
  color: rgb(0, 0, 205);
  font-size: 3rem;
}
h2 {
  font-size: 1rem;
  color: rgb(0, 0, 205);
}
h3 {
  font-size: 2rem;
  text-align: center;
  color: rgb(0, 0, 205);
}
h4{
  color: rgb(0, 0, 205);
}
nav{
  display: flex;
  position:relative;
  width: 95%;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
#nav-list{
  display: flex;
  justify-content: space-around;
}
a {
  text-decoration: none;
  color: rgb(0, 0, 205);
}
nav ul { 
  width: 100%;
  font-size: 30px;
  text-align: center;
  margin: 10px 0 ;
  padding: 0 0;
}

nav li {
  border: solid rgb(130, 178, 255) 1px;
  background-color: white;
  border-radius: 15px;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  list-style-type: none;
  font-size: 1.5rem;
}
nav li:hover {
  background-color: rgb(214, 214, 214);
  
}
.small-text {
  font-size: 1rem;
  color: black;
}

@media (max-width: 600px) {
  nav{
    display:none;
  }

}

.red-text{
  color:red;
}
.open-container{
  background-color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-img{
  width:30vw;
  height:30vh;
  margin-bottom: 10px;
}

.section-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:rgb(252, 252, 252);
  box-shadow: 10px 10px 20px rgb(172, 172, 172);
  border-radius: 10px;
  padding: 10px;
  width:90%;
  margin-top: 15px;
  text-align: center;
}
.section-text {
  margin: auto;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}

#open-times {
  font-size: 2rem;
  color: rgb(0, 0, 205);
}

#our-range-container{
  display: flex;
  flex-wrap: wrap;

}
#our-range{
  flex: 100%;
}
.red-text-range{
  color:red;
  font-size: 1.8rem;
}
#flex-list{
  flex: 50%;
  color: rgb(0, 0, 205);
  font-size: 1.8rem;
  text-align: left;
}

.contact-options {
  display: flex;
  font-family: 'Courier New', Courier, monospace;
  
}
.contact{
  margin: 0 5px;
  width:33%;
}
.contact-img {
  width: 60px;
  height: 60px;
}

.contact-text {
  width:100%;
}



.form-control {
  display: block;
  width: 70%;
  height: 1rem;
  padding: 1.5rem 1rem;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.5rem;
  margin: 10px auto;
}

.form-header {
  color: rgb(0, 0, 205);
}

.form-control:focus {
  border-color: #80bdff;
  outline: 1;
  box-shadow: 5px 5px 20px rgb(172, 172, 172);
}
.submit-btn{
    width: 50%;
    height: 1.5rem;
    background-color: rgb(0, 0, 205);
    color: white;
    margin: 10px;
    border-radius: 0.5rem;
}

@keyframes hero-fade {
  0% {opacity: 0%;}
  100% {opacity: 100%}
}