/* 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
{
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #68b98a;
  color: #fff3cd;
  text-align: center;
}

h1 /* Replace with own pixel-art */
{
  padding: 30px 20px 20px;
  font-size: 3em;
  font-weight: bold;
}

section
{
  margin: 40px auto;
  max-width: 600px;
  padding: 10px 20px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

h2
{
  font-size: 2em;
  margin: 5px 0px 10px;
}

section p
{
  font-size: 1.2em;
}
  
a img
{
  width: 150px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
  
a img:hover
{
  transform: scale(1.05);
}


