/* 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-image: url(images/bluebackground.jpeg);
  color: black;
  font-family: "Verdana";
}

/* From https://css.glass */
.glass{
background: rgba(156, 214, 255, 0.49);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
-webkit-backdrop-filter: blur(7.6px);
border: 1px solid rgba(156, 214, 255, 0.86);
}
