*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header{
  color: white;
  background-color: red;
  border: 2px solid red;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 150px;
  padding: 20px;
  margin-bottom: 5px;
  }

.logo{
  width:100px;
  height:100px;
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid white;
  }

ul{
  list-style: none;

}

.headitem, href{
  float: right;
  vertical-align: middle;
  padding:  30px 25px;
  text-decoration: none;
  color: white;
}

a{
  color: white;
  text-decoration: none;
}

a:hover{
  background-color: powderblue;
  color: black;
  font-size: 22px;
  width: 25%;
  padding: 10px;
}

body{
  background-color: #a5a8a6;
}

article{
  background-color: white;
  border: 2px solid #CCC;
  width: 64%;
  float: left;
  padding: 10px;
  margin: 10px 4px 10px 6px;
}

h1{
  background-color: powderblue;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px;
}

h2{
  background-color: powderblue;
  height: 35px;
  padding: 5px 0;
  margin-bottom: 7px;
}

h3{
  background-color: powderblue;
  height: 50px;
  padding: 10px;
  margin-bottom: 10px;
}

h4{
  background-color: powderblue;
  padding: 6px 2px;
  margin-bottom: 5px;
}

address{
  height: 30px;
  background-color: darkblue;
  padding: 5px 0;
  margin-bottom: 10px;
}

address:hover{
  text-decoration-line: underline;
  color: darkblue bold;
  font-size: 18px;
}

.mainsection{
  height: 190px;
  padding: 10px 10px 0 10px;
  background-color: #4287f5;
  margin-bottom: 10px;
}

.column{
  position: left static;
  float: left;
  width: 65px;
  height: 85px;
  font-family: arial;
  text-align: center;
}

.month{
  position: left static;
  height: 35px;
  background-color: red;
  padding: 4px 8px 8px 8px;
  border-radius: 12px 12px 0 0;
  border: 2px solid red;
  font-size: 22px;
  color: white;
}

.date{
  position: left static;
  height: 50px;
  background-color: white;
  padding: 7px 5px 15px 5px;
  border-radius: 0 0 12px 12px;
  font-size: 36px;
}

.maincont{
  float: right;
  width: calc(100% - 75px);
  overflow: auto;
  height: 85px;
  background-color: powderblue;
  padding: 5px 10px;
}


h2:hover{
  background-color: #59e1f0;
  color: red;
}

.sidesection{
  height: 130px;
  padding: 10px 10px 0 10px;
  background-color: #4287f5;
  margin-bottom: 10px;
  overflow: auto;
  clear: both;
}

.sidecont{
  width: calc(100% -20px);
  height: 75px;
  background-color: #739beb;
  padding: 5px 10px;
  overflow: auto;
  clear: both;
}

#aside#no{
  padding: 0;
}


.aside{
  background-color: white;
  border: 2px solid #CCC;
  width: calc(100% - 64% - 28px);
  float: right;
  padding: 10px;
  margin: 10px 9px 10px 4px;
}

.readmorelink{
  align-self: left flex-start;
}

#readMorebtn: onclick{
  border: none;
  pading: 10px;
  opacity: 1;

}

#dots{
  transition: .25s ease;
  opacity: 0;
}

footer{
  background-color: darkgrey;
  color: white;
  border: 2px solid darkgrey;
  width: 100%;
  height: 300px;
  display: flex;
  vertical-align: middle;
  position: sticky;
  bottom: 0;
  justify-content: space-between;
  resize: both;
}

.footitem{
  float: left;
  padding: 15px 30px;
  text-decoration: none;
}
