/* 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: white;
  color: black;
  font-family: Verdana;

  padding : 5px;
}
 html {
    height: 100%;
    width: auto;
 
   
  
    background-color: deepskyblue;
  }
  
  pre {
    
    background-color: LightBlue;
      border-width :5px;
     border-style :solid;
  }
  
  /* The navbar container */
.menu {
    overflow: hidden;
    background-color: #333;
}

/* Navbar links */
.menu a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Links - change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.header {
    background-color: lightblue;
    text-align: center;
    padding: 20px;
    
    
}
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* 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: #f9f9f9;
    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: #f1f1f1}

/* 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: #3e8e41;
}
 
tile {
  display:block;
  height : 200px;
  width : 100%;
  margin : 10px;
  border-width: 5px;
  border-style: solid ;
  float:none;
  
 
  
}

tile a {
   background-color: #f44336;
    color: white;
    padding: 14px 25px;
    text-align: center; 
    text-decoration: none;
   
}

.clearfix {
  overflow: auto;
}



a:link, a:visited {
   
}

a:hover, a:active {
    background-color: red;
}


