body{
    background-color: rgb(145, 238, 233);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1{
    text-align: center;
    margin: 8px;
    text-transform: uppercase;
    border-bottom: 2px solid black;
    padding-bottom: 8px;
}
h2{

}
section{
    border: 4px solid red;
    margin: 20px auto;
    min-height: 200px;
    border-radius: 8px;
    width: 80%;    
    color: red;
    transform: translateY(95px) rotate(10deg);
}
.three_boxes{
    background-color: rgb(255, 255, 255);
    min-height: 150px;
    border: 8px;
    padding: 20px 0px;
    margin: 16px;
    text-align:center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}
.three_boxes > div{
    margin: 25px auto;
    background-color: green;
    min-width:200px;
    min-height: 200px;
    margin: 32px;
    border-radius: 8px;
    flex-basis: 200px;
    flex-grow: 1;
    position: relative;
}
.disc{
    border-radius: 50%;
    background-color: red;
    position: absolute;
    width: 80px;
    height: 80px;
    line-height: 77px;
    bottom: 0px;
    left: 200px;
    transform: translateY(65%);
}
.fiveboxes_contain{
    background-color: rgb(255, 255, 255);
    min-height: 180px;
    border: 8px;
    text-align: center;
    padding: 15px;
    margin: 8px;
}
.fiveboxes_contain > div{
    width: 200px; height : 200px;
    background-color: #393;
    display: inline-block;
    transform: skew(-5deg) rotate(-5deg);
    margin: 15px 8px;
}
.fiveboxes_contain > div:nth-child(1){
    background-color: orange;
}
nav a {
    display: inline-block;
    background-color: rgb(19, 132, 197);
    color: #222;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 2px 2px 2px #222;
    font-size: 16pt;
    padding: 12px 24px;
    margin: 8px;
}
nav a:hover{
   background-color: #6a6b66 ;
}
nav a:active {
   box-shadow: 1px 1px 1px #111;
   position: relative;
   top: 1px;

}