body {
  margin: 10px;
  min-height: 90vh;
  background-color: lavender;
}

a {
  text-decoration: none;
  color: rgb(158, 158, 212);
}

/*GRID VIEW*/
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    /*border: 1px solid black;*/
    width: 100%;
}

.grid-item {
  background-color: white;
  padding: 20px;
  text-align: center;
  /*border: 1px solid black;*/
}

/*STYLE*/
.date {
    font-family: "Reenie Beanie", cursive; /*"Amatic SC"; /*"Cedarville Cursive";*/
    margin: 0;
}

.title {
    font-family: "Sour Gummy", sans-serif;
}

.subtitle {
    font-family:"Space Grotesk", sans-serif;
    margin: 0;
}
 
.bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header {
  margin-bottom: 2vh;
}
footer {
  margin-top: 2vh;
}
.heading {
  font-family: "Amatic Sc", cursive;
  font-weight: 700;
  font-size: 6vh;
  margin: 0;
  color: rgb(158, 158, 212);
}