a {
  color: white;
}
#first{
    margin-left: 1.5%;
}
.dropbtn {
    background-color: black;
    color: white;
    font-size: 30px;
    border: none;
    width: 100%;
    padding: 5px;
}
.dropdown {
    position: relative;
    display: inline-block;
    width: 24%;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 100%;
    z-index: 1;
}
.dropdown-content a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px;
    font: bold;
    font-size: 25px;    
}
body{ 
    background-color: grey
}
#maintitle{
    font-family: Times, Serif;
    border-radius: 10px;
   font-size: 40px;
   text-decoration: bold;
    background-color: white;
    content: center;
   text-align: center;
}
#maintext{
    background-color: blue;
    width: 90%;
    height: 90%;
    margin: 5%;
    border-radius: 1%;
    padding: 5px;
    color: white;
    font-size: 30px;
}
.pic1 {
    float: left;
    height: 25%;
    width: 25%;
}
.bread {
    padding: 20%;
    height:  50%;
}
.dropdown-content a:hover {background-color: red;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: blue;}
/*This is what causes the content to dropdown, found using w3schools.com, wikihow.com and*/