header {
    background-color: darkcyan;
    text-align: center;
    font-family: 'Roboto Slab', 'Open Sans', sans-serif;
    font-size: large;
    margin: 25px auto;
}

main {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    margin-bottom: 10px;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-size: large;
    grid-gap: 10px;
}

main p {
    color: black;
}

main img {
    max-width: 100%;
    max-height: 100%;
}

section {
    border: 2px solid black;
    padding: 10px;
    border-radius: 5px;
    width: auto;
    min-width: 200px;
    max-width: 300px;
    margin: auto;
    text-align: center;
}

footer {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    background-color: darkcyan;
}

footer a:link {
    color: black;
  }
  
  footer a:hover {
    font-weight: 500;
    text-shadow: 5px 2px 5px gray;
  }
  
  footer a:visited {
    color: black;
  }

#copyright {
    padding: 5px;
    text-align: center;
    color: black;
    font-size: small;
}
