.main {
    font-family: futura, arial;
    padding: 20px;
    border: 4px solid grey;
    border-radius: 25px;
    background-color: lightblue;
    color: rgb(0, 0, 0);
}
/* Headings and Paragraphs */
h1, h2, h3 {
    font-family: futura, arial;
}
h2, h3 {
    color: darkblue;
    text-shadow: 1px /*Horizontal Offset*/ 1px /*Vertical offset*/ 2px /*Blur Radius*/ white;
    border-radius: 25px;
    padding: 4px;
}
h2 {
        background-color: goldenrod;
}
h3 {
        background-color: orange;
}
p {
   font-family: futura, nunito, Verdana;
   font-size: 15px;
}
/* Links */
/*      Default link style */
a {
    text-decoration: underline;
    color: blue;
}
/*      Link styles for different states */
a:visited {
        color: rgb(238, 0, 255);
    }
a:hover {
        color: rgba(0, 0, 255, 0.333);
    }
/* Highlighted */
::selection {
    background-color: gold;
    color: black;
}
/*Images*/
img {
    border: 4px solid goldenrod;
    border-radius: 25px;
    padding: 4px;
}
/*Classes*/
/*      Navbar */
.navbar {
    background-color: rgb(1, 0, 35);
    padding: 12px;
    border: 4px solid grey;
    text-align: right;
    border-radius: 25px;
}
.navbar a {
    color: white;
    font-size: 20px;
    font-family: futura, impact;
}
.navbar a:visited {
    color: white;
}
.navbar a:hover {
    color: yellow;
    font-weight: bold;
}
/*      Header*/
.header {
    background-color: rgb(0, 0, 85);
    padding: 100px;
    border-radius: 25px;
    text-align: center;
    font-family: futura, impact;
    color: white;
    border: 4px solid grey;
    border-collapse: collapse;
}
.header h1 {
    font-size: 50px;
    text-shadow: 2px 2px 4px black;
}
.header p {
    font-size: 25px;
    font-weight: bold;
}
/*      Wikipedia Quotes */
.wikipedia {
    font-style: italic;
    font-family: georgia, futura;
    font-size: 15px;
}
/* Tables and Lists*/
/*      Tables */
.tabletitle {
    text-align: center;
    color: black;
    font-size: 16px;
    font-weight: bold;
}
#table1 {
    border: 1px solid goldenrod;
    width: 50%;
    border-radius: 25px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-family: courier, roboto;
    color: green;
    padding: 2px;
    background-color: rgb(255, 255, 150);
}
#table2 {
    border: 2px solid goldenrod;
    border-radius: 25px;
    width: 50%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-family: courier, roboto;
    color: green;
    padding: 2px;
    background-color: rgb(255, 255, 150);
}
/*          Borders for table cells*/
#table1 th, #table1 td,
#table2 th, #table2 td {
    border: 2px solid goldenrod;
    padding: 8px;
    border-collapse: collapse;
    font-family: courier, roboto;
    background-color: lightyellow;
    border-radius: 25px;

}
/*      Lists */
ul, ol {
    font-family: roboto, futura, verdana;
    font-size: 15px;
    font-weight: bold;
}
@media only screen and (max-width: 400px) {
  p {
    font-size: 38px;
  }
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 52px;
  }
}
