body {
  font-family: sans-serif;
  padding: 0;
  margin: 0;
}
.card {
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
   border-radius: 5px;
   padding: 20px;
   margin-top: 20px;
}
header {
  display: inline;
}
h1 {
  color: blue;
  text-align: center;
  font-size: 25px;
}
h2 {
  text-align: center;
}
.red {
  line-height: 2px;
  text-align: center;
  color: red;
}
main {
  display: inline;
}
.left-content {
           font-size: 12px;
           text-align: center;
           line-height: 20px;
           width: 33.3%;
           height: 50%;
           float: left;
           margin: 0 auto;
       }
 
       .center-content {
           font-size: 12px;
           text-align: center;
           line-height: 20px;
           width: 33.3%;
           height: 50%;
           float: left;
           margin: 0 auto;
       }
 
       .right-content {
           font-size: 12px;
           text-align: center;
           line-height: 20px;
           width: 33.3%;
           height: 50%;
           float: left;
           margin: 0 auto;
       }
nav li {
   display: inline;
   list-style-type: none;
   margin-right: 20px;
}
nav {
  text-align: left;
   margin: 2px;
   padding: 5px;
}
nav a {
   font-size: 10px;
   font-weight: 400;
   text-decoration: none;
   color: blue;
}
nav a:hover {
   font-weight: bold;
   color: blue;
}
       
@media screen and (min-width: 450px) {
   .light_blue, .green {
       width: 50%
   }
}
footer {
  text-align: center;
  line-height: 100px;
  color: blue;
  margin: 2px;
}