h1
{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

h2
{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

nav
{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

p
{
    text-align: center;
}

body
{
  background-color: aliceblue;
  font-family: 'Times New Roman', Times, serif;
}

#slide
{
  text-align: center;
  background-color: white;
  border-style: solid;
  height: 400px;
}

nav
{
  font-size: large;
  margin-bottom: 10px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: 400px
}
/*The css code from the slideshow
comes from https://www.w3schools.com/howto/howto_js_slideshow.asp
*/

.mySlides {
  display: none;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}