*{
  margin: 0;
  padding: 0;
}
body{
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 14px;
  height: 100%;
  margin: 0;
}

h1{
  font-size: 200%;
  color: white;
  text-shadow: 1px 1px 1px #000;
}

h2{
  font-family: Arial, Helvetica, Sans-Serif;
  font-size: 18px;
  font-weight: bolder;
}


p{
  padding: 0px;
  margin: 10px 5px 5px 0px;
}

.container{
 background-color: gray;
}

.nav{
  display: grid;
  height: min 125, max 300;
  grid-template-columns: 1fr 3fr;
  background-color: red;
  padding: 10px;
}

.nav li a {
    font-weight: bold;
    color: white;
}
.nav li a:hover {
  color: black;
}

.nav h1{
  text-align: left;
  display: grid;
  align-items: center
  font-color:white;
}

nav ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    height: 15px;
}

.navBar{
  border:10px;
  padding: 10px 10px 10px;
  margin: 10px;
  text-align: left;
  align-items: center;
}

#flexContainer{
  background-color:#e3e3e0;
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content:space-around;
}

.flexBox1{
    width: 100%;
    background: white;
    height:inherit;
    padding: 10px 10px 0px 10px;
    margin: 10px;
    flex-direction: column;
    flex-grow: 1;
    justify-content: left;
}
    .itemA{
      /* background-color: #b0baff; */
      padding: 0px 0px 10px 0px;
    }

    .dtg{
        width:55px;
        height:100%;
        border-radius: 25px;
        border:solid red 2px;
        overflow: hidden;
      }
      .dtg time{
        display:block;
        text-align: center;
        font-family: arial;
      }
      .dtg time:nth-of-type(1){
        height:35px;
        background-color: red;
        color:white;
        overflow: hidden;
        font-size: 20px;
        padding-top:2px;
      }
      .dtg time:nth-of-type(2){
        height:50px;
        background-color: #DDD;
        color:black;
        overflow: hidden;
        font-size:35px;
      }

    .itemB{
      /* background-color: #b0baff; */
      height: 83%;
      padding: 0px 0px 10px 0px;
      margin: 10px 0px 10px 0px;
      line-height: 300%;
    }
    .bList li {
      padding: 0px 0px 0px 10px;
      list-style: none;
    }
    .bList li a{
      font-weight: bold;
    }
    a:hover{
      background-color: pink;
    }

.flexBox2{
  background-color: white;
  width: 420px;
  height: auto;
  /* flex:1; */
  padding: 10px 10px 0px 10px;
  margin: 10px;
  flex-direction: column;
  flex-grow: 0;
  justify-content: right;
}
    .itemC{
      /* background-color: #b0baff; */
      padding: 0px 0px 10px 0px;
    }
    .itemD{
      height: inherit;
      /* background-color: #b0baff; */
      padding: 0px 0px 10px 0px;
      margin: 10px 0px 10px 0px;
    }

footer {
  position: sticky;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color:#575757;
  padding: 10px 0px 0px 0px;
  height: 300px;
  width: 100vw;
  color: white;
  text-align: left;
}
