* {
    box-sizing: border-box;
}

h1 {
  color: #585858;
}

h2 {
  color: #0000DD;
}

img {
    max-width: 100%;
    height: auto;
}

body {
  margin: 0;
  
  
}

p a {
  text-decoration: none;
}
  
/* Style the header */
.header {
    background-color: #d9ecf2;
    padding: 20px;
    text-align: center;
    color: #0000DD;
}

/* Create a column that floats next to each other */
.column {
    
    width:100%; 
    text-align: center;
    padding: 15px;
    background-color: #d9ecf2; 
    
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.footer {
    background-color: #d9ecf2;
    text-align: center;
    padding: 10px;
    
}

/* Style the bottom navigation bar */
.bottomnav {
    overflow: hidden;
    background-color: #d9ecf2;
    font-size: 24px;
    font-weight: bold;
}

/* Style the bottomnav links */
.bottomnav a {
    display: block;
    color: #0000DD;
    text-align: center;
    
    padding: 14px 16px;
    text-decoration: none;
    
}

/* Change color on hover */
.bottomnav a:hover {
    background-color: #000088;
    color: white;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
    .column {
        width: 100%;
    }


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
   .column {
        width: 100%;    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
   .column {
        width: 100%;   
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
   .column {
        width: 100%;    
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .example {background: pink;}
    .column {
        width: 100%;

}


