/* stylesheet.css */
/* 11-22-2020 */

* {
  box-sizing: border=box;
}


body {
  font-family: Candara, Geneva, Arial, sans-serif;
  font-weight: lighter;
  margin-left: 15%;
  margin-right: 15%;
  padding: 0;
  background-color: black;
  color: antiquewhite;
  font-size: 150%;
  text-align: left;
  line-height: 150%;
} 

strong {
  color: white;
}

.header {
  padding: 60px;
  text-align: center;
  font-size: 200%;
  line-height: 110%;
}

/* regular links */
a:link {
  color: lightskyblue;
  text-decoration: none;
}

a:visited {
  color: lightskyblue;
  text-decoration: none;
}

a:hover {
  color: lightskyblue;
  background-color: #555;
  text-decoration: none;
}

/* navigation bar & menu */
.navbar {
  position: relative;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  top: 1em;
  left: 0;
  color: antiquewhite;
  background: #202020;
  text-decoration: none;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color: antiquewhite;
}

.navbar a:link {
  padding: 14px 20px;
  color: antiquewhite;
  text-decoration: none;
}

.navbar a:visited {
  color: antiquewhite;
  text-decoration: none;
}

.navbar a:hover {
  color: antiquewhite;
  background-color: #555;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .navbar {
    flex-direction: column;
  }
}

/* image table */
.image_table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}




@media (max-width: 1000px) {
  .navbar a:link {
    padding: 2px 0 ;
  }
}






