/* WEBSITE */
body {
  font-family: arial;
  background: ;
}

/* DIVS */

#header {
  background: lightseagreen;
  position: relative;
  width: 100%;
  padding: ;
  margin: auto;
  text-align: center;
}

#nav {
  background: lightslategrey;
  position: relative;
  top: ;
  left: 480px;
  width: 50%;
  max-width: ;
  margin: ;
  color: lightseagreen;
  padding: ;
}

#section {
  background: lightgrey;
  position: relative;
  width: 100%;
  max-width: ;
  margin-top: 80px;
  padding: 25px;
  overflow: hidden;
}

#footer {
  background: darkslategrey;
  color: lightsalmon;
  text-align: ;
  position: relative;
  width: 100%;
  max-width: ;
  margin-top: 15px;
  padding:20px ;
}

/* NAV */

#nav ul {
    text-align: center;
    font-family: arial;
    font-weight: 10;
}
#nav li {
    display: inline-block;
    padding: 20px;
    font-size: 24px;
}
#nav a {
  color: black;
  text-decoration: underline;
  }

 #nav a:hover {
  color: gainsboro;
  font-weight: ;
}

/* LINKS */

a {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

a:visited {
  color: blue;
  font-weight: ;
}

a:hover {
  color: rebeccapurple;
  font-weight: bolder;
}

/* TEXT */

h1 {
  color: black;
  font-size: 36px;
  font-weight: ;
  text-align: center;
}

h2 {
  font-size: ;
  font-weight: ;
}

h3 {
  font-size: ;
  font-weight: ;
}

p {
  font-size: ;
  font-weight: ;
  line-height: ;
}

li {
  font-size: ;
  font-weight: bold;
  line-height: ;
  margin-bottom: 5x;
}

/* TABLE */
table {
  border-collapse: collapse;
  width: 1000px;
  margin: ;

}

th, td {
  border: 2px solid black;
  padding: 5px;
  text-align: center;
  display: flex;
  margin: 0 15px;
}

th {
  background-color: ;
  font-weight: ;
}

tr:nth-child(even) {
  background-color: ;
}


/* IMAGES */

img.float-left {
  float: left;
  margin-right:20px;
  width: 30%;
  padding: 20px 10px 20px 0px
}

img {
  width: 750px;
  height: auto;
}

img.logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  }

.sidebar {
float: right;
width: 15%;
height: auto;
border: 1px solid white;
margin-left: auto;
margin-right: auto;
}

.sidebar-bottom {
display: none;
}

@media screen and (max-width: 480px) {

.sidebar {
display: none;
}

.sidebar-bottom {
display: block;
position: relative;
width: 90%;
height: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
border: 1px solid white;
background: white;
}
}