/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Trebuchet MS", Helvetica ;
  
  
}

.flex {
  display: flex;
}


.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  
}

img {
  display: block;
  margin: auto;
  object-fit: contain;
}


.container2 {
  display: grid;
  grid-template-columns: 2fr 1 fr;
   grid-auto-rows: 100px;
   gap: 10px;
    }
    
    .container2 {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 10px
    }
h1 {
  text-align: center;
}

.copyright {
  font-size: 0.8em;
}
h2 {text-align: left;
}


/* nav menu */

ul {
  padding: 0;
  list-style-type: none;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

li {
  flex: auto;
}

nav a {
  font-size: 1em;
  padding: 0 20px;
}

/* General link styles */

a {
  text-decoration: none;
  color: chocolate;
}

a:hover,
a:focus {
  font-style: italic;
}




