/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15-Jul-2020, 01:58:47
    Author     : charl
*/

* {
    box-sizing: border-box;
    font-family: Arial;
}


.header {
    float:left;
    width: 100%;
    height: 150px;
    color: #ffffff;
    background-color: #3333ff;
    font-size: 48px;
}

.footer {
    float: left;
    width: 100%;
}

.menu {
    float: left;
    width: 100%;
    background-color: #ccffff;
    font-size: 24px;
    display: inline;
}

.main {
    float: left;
    width: 75%;
    overflow: hidden;
    margin-top: 1%;
    margin-left: 1%;
}

@media only screen and (max-width:800px) {
    /* For tablets: */
    .main {
        width: 80%;
        padding: 0;
    }
    .right {
        width: 100%;
    }
}

@media only screen and (max-width:500px) {
    /* For mobile phones: */
    .menu, .main, .right {
        width: 100%;
    }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #ccffff;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 25px 25px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #3333ff;
}