/* 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: white;
  color: black;
  font-family: Verdana;
}
.liqGlass {
background-color: rgb(255 255 255 / 15%);
    backdrop-filter: blur(7px);
        border-radius: 20px;
        border: 5px inset rgb(255 255 255 / 5%);
        text-align: center;
        font-family: Roboto;
        color: white;
        }
        .liqGlassRed {
background-color: rgb(255 255 255 / 15%);
    backdrop-filter: blur(7px);
        border-radius: 20px;
        border: 5px ridge rgb(128 0 0 / 5%);
        text-align: center;
        font-family: Roboto;
        color: white;
        }
        .liqGlassGreen {
background-color: rgb(255 255 255 / 15%);
    backdrop-filter: blur(7px);
        border-radius: 20px;
        border: 5px ridge rgb(0 128 0 / 5%);
        text-align: center;
        font-family: Roboto;
        color: white;
        }
        .liqGlassBlue {
background-color: rgb(255 255 255 / 15%);
    backdrop-filter: blur(7px);
        border-radius: 20px;
        border: 5px ridge rgb(0 0 128 / 5%);
        text-align: center;
        font-family: Roboto;
        color: white;
        }
        
        h1.glass {
            background-color: rgb(255 255 255 / 45%);
    color: transparent;
    background-clip: text;
            font-family: Roboto;
            text-align: center;
            -webkit-text-stroke: 1px rgb(255 255 255 / 5%);
            text-shadow: 0 100 50px #ffffff
}
        p.glass {
            background-color: rgb(255 255 255 / 45%);
    color: transparent;
    background-clip: text;
            font-family: Roboto;
            text-align: center;
            -webkit-text-stroke: 1px rgb(255 255 255 / 5%);
            text-shadow: 0 100 50px #ffffff
}