@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bree+Serif&family=Comfortaa:wght@600&family=Courgette&family=Girassol&family=Lobster&family=Rubik:wght@300;400&family=Russo+One&family=Suez+One&display=swap&family=Days+One&display=swap');

/*
font-family: 'Audiowide', cursive;
font-family: 'Bree Serif', serif;
font-family: 'Comfortaa', cursive;
font-family: 'Courgette', cursive;
font-family: 'Girassol', cursive;
font-family: 'Lobster', cursive;
font-family: 'Rubik', sans-serif;
font-family: 'Russo One', sans-serif;
font-family: 'Suez One', serif;
font-family: 'Days One', sans-serif;
*/


#format {
  margin: 0 auto;
  max-width: 960px;
}

header {
  background-color: #0062b8;
  padding: 20px;
  color: white;
  text-align: center;
  font-size: 20px;
  font-family: 'Days One', sans-serif;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.5em;
}

main {
    margin: 0 10px 0 10px;
    font-family: 'Roboto', sans-serif;
  }

img {
      align-items: center;
  }

footer {
  margin-top: 20px;
  text-align: center;
  clear: both;
  background-color: #0062b8;
  padding: 25px;
  color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
}

#lastupdated {
    color: yellow;
    height: none;
}

footer a {
  color: #FFFFFF;
}

/* Lesson 2 Grid */

.lesson2_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
}

.column1 {
    grid-column: 1;
    width: 300px;
}

.column2 {
    grid-column: 1;
    width: 300px;
}

.column3 {
    grid-column: 1;
    width: 300px;
}

a {
    text-decoration: none;
    color: #0057b8;
}

#paragraph_height {
    height: 140px;
}