@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

.responsive {
  width: 100%;
  height: auto;
}

/* Style the body */
body {
  font-family: Arial;
  margin: 0;
}
.content-area{
    
    width: 100%;
    height: 2200px;
    position: relative;
    background-color:aliceblue;
    top: 550px;

}
.content-area h2{
    font-size: 40px;
    margin: 0;
    padding-top: 30px;
    letter-spacing: 4px;
}

p{
    
    padding: 2%;
    line-height: 30px;
    text-align: justified;
}

/* Header/logo Title */
.header {
  padding: 60px;
  text-align: center;
  background-color:cornflowerblue;
  color: white;
}

/* Style the top navigation bar */
.navbar {
  display: flex;
  background-color:darkblue;
    align:center;
     
}

/* Style the navigation bar links */
.navbar a {
  color: white;
    align:center;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

div.container {
  text-align: center;
}

ol.myOL {
  display: inline-block;
  text-align: left;
    padding: 30px;
    border: 2px solid blue;  
  
}

/* Footer */
.footer {
  padding: 10px;
  text-align: center;
  background-color:cornflowerblue;

    
}

footer-content p{

    max-width: 500px;

    margin: 10px auto;

    line-height: 28px;

    font-size: 14px;

    

}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width:700px) {
  .row, .navbar {   
    flex-direction:column-reverse;
  }
}

@media only screen and (max-width: 600px){
    .header {
  background-color:cornflowerblue;
  color:antiquewhite;
  padding-top: 30px;
        padding-bottom:20px;
    padding-left:20px;
    height: 120px;
    width:100%;
    line-height:80px;
    font-size: 2.9vw;
}

@media only screen and (max-width:768px){
    
    .header {
  background-color:cornflowerblue;
  color: black;
  padding-top: 10px;
        padding-bottom:20px;
    padding-left:20px;
    height: 200px;
    width:100%;
    line-height:80px;
        font-size: 3.0vw;
}
    
    @media only screen and (min-width: 1028px) 
    
    {
        
        .header {
  background-color:cornflowerblue;
  color: white;
  padding-top: px;
        padding-bottom:0px;
    padding-left:20px;
    height: 100px;
    width:100%;
    line-height:80px;
        font-size: 3.0vw;
        
        }
        
        /* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}
    
 
