/* Styles for Mobile Layout */
/* Emily Kalis April 10, 2021 */

body { color: #000000;
background-color: #FFFFFF;
font-family: Georgia, "Times New Roman", serif;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 2.7em
}

hr {
  text-align: center;
  color: #FF6600;
}

/* Style to create a fluid image */
img {
  max-width: 100%;
}

nav {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
}

/* Style specifies padding and margins for unordered list */
nav ul {
  padding: 0;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Style for nav li specifies the background color, rounded corners, removes bullet style, and applies margins and padding for list items within the navigation */
nav li {
  background-color: #FF6600;
  border-radius: 1em;
  list-style-type: none;
  margin: 0.3em;
  padding: 0.4em;
}

main { clear: both;
}

ul { list-style-type:none;
}

nav ul li {
  list-style:none;
}

/* Style changes navigation link text color to white and removes the underline */
nav li a {
  color: #FFFFFF;
  text-decoration: none;
}

.tablet {
  display: block;
}

@media only screen and (min-width: 481px) {
}

img {
  width: 25%;
  float: left;
}

header p {
  margin-bottom: 4em;
}

nav li {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  padding-left: 0;
  padding-right: 0;
  width: 23%;
}

main {
  clear: left;
  margin-top: 12em;
}
  
.mobile {
  display: none;
}

.desktop {
  display: inline;
}

@media only screen and (min-width: 769px) {
}
  
#container {
  width: 80%;
}

nav {
  margin-top: -5em;
}

nav ul {
  margin: 0;
  padding-left: 0.50%;
  padding-right: 0.50%;
}

nav li {
  background-color: #FFFFFF;
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  width: 18%;
}

nav li a {
  color: #FF6600;
  display: inline-block;
  padding: 0.7em;
  font-size: 1.25em;
}

nav li a:link {
  color: #FF6600;
}

nav li a:hover {
  color: #4C1F00;
  font-style: italic;
}

main {
  border: none;
  border-radius: 1em;
  box-shadow: 1em 1em 1em #331400;
  margin-top: 1em;
}

footer { font-size: 0.75em;
text-align: center;
}

/* Style specifies to hide the mobile class */
.mobile {
  display: none;
}

/* Style specifies to hide the desktop class */
.desktop {
  display: inline;
}