/* 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: #99ccff;
  background-image: url("background.png");
  background-attachment: fixed;
  color: black;
  font-family: "Sour Gummy", "normal";
}

div {
  width: 650px;
  border: 5px groove gray;
  padding: 10px;
  margin: 20px;
  background-color: white;
  border-radius: 20px;
}
p{
  font-size: 20px;
}
h{
  font-size: 60px;
}
.title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
.center{
  margin: 20px auto;
}
.image{
  display: flex;
  width: auto;
  flex-wrap: wrap;
  border: 2px solid gray;
  gap: 10px;
}
.image img{
  width: auto;
  height: 200px;
  border-radius: 5px;
}