/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-color: #A9CCE3;
  color: #154360;
  font-family:"Helvetica","Verdana", sans-serif;

}
.centre {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.left {
  display: block;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}



/*This box-sizing tag is here to make sure all the boxes have padding and border included in the total width and height of the elements. Responsive design thing. */
* {
  box-sizing: border-box;
} 
/*This This img tag makes the image resize automatically on a phone */
img {
  max-width: 100%;
  height: auto;
}

/*.menu {
  width: 25%;
  float: left;
}
.main {
  width: 75%;
  float: left;
}*/

p {
  /*background: rgba(0, 128, 0, 0.3);*/
color: #154360; 
font-family: "Verdana", sans-serif;
text-align: center;
/*font-family: "Courier New", monospace;*/
}

h1 {text-align: center;
background-color: #2980B9;
color: #154360;
font-family:"GFS Didot", sans-serif;
font-size: 48px;}

/*ul {text-align: center;}
li {text-align: center;}*/

/* Dropdown Button */
.dropbtn {
  background-color: #A9CCE3;
  color: #154360;
  padding: 16px;
  font-size: 48px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: white;}
