/* 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: Verdana;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 0.3fr 1fr;
  grid-template-rows: 5fr 0.8fr 5fr;
  gap: 10px;
}

.item-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center; 
}

.button { 
  background-color: #1c87c9; 
  border: none; 
  color: white; 
  padding: 10px 11px; 
  text-align: center; 
  text-decoration: none; 
  display: inline-block; 
  font-size: 20px; 
  margin: 4px 2px; 
  cursor: pointer; 
}

