:root {
  color-scheme: light dark;
}
body {
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;  
    background-color: light-dark(#ffffff, #000000);
    color: light-dark(#000000, #ffffff);
    background-image: radial-gradient(light-dark(rgba(128 192 128 / 0.95), rgba(0 64 0 / 0.75)), light-dark(rgb(255 255 255), rgb(0 0 0)) 80%);
    box-sizing: border-box;
    text-shadow: 0 0 2px light-dark(rgb(0 64 0), rgb(192 255 192)); /* Add a glow effect */
    filter: blur(0.25px);
    height: 100%;
    padding: 16pt 0 0 0;
}
.hero {
    width: 100%; /* Can use percentage or fixed width (e.g., 900px) */
    margin-left: auto; /* Centers the div horizontally */
    margin-right: auto; /* Centers the div horizontally */
    display: flex;         /* Use justify-content and align-items */
    justify-content: center; /* Center horizontally */
    align-items: center;   /* Center vertically */
}
.intro {
    width: 700px;
    margin-left: auto; /* Centers the div horizontally */
    margin-right: auto; /* Centers the div horizontally */
    text-align: center;
    margin-top: 96pt;
}       
h1 { 
    font-size: 48pt;
    margin: 0;
    padding: 0;
    white-space: normal;
}

.site-title {
    line-height: 1.0;
    text-align: center;
}

.title-break {
    display: inline;
}
h2 { 
    font-size: 12pt;
    margin: 0;
    padding: 0;
    margin-top: 6pt;
    margin-left: 72pt;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.download {
    font-size: 24pt;
    border-radius: 24pt;
    margin: 0;
    margin-top: 24pt;
    margin-left: 72pt;
    padding: 4pt 16pt 4pt 16pt;
    opacity: 50%;
    cursor: hand;
    text-decoration: none;
    display: inline-block;
}
.trial {
    margin: 0;
    margin-top: 4pt;
    margin-left: 36pt;
    font-size: 8pt;
}
.ash { 
    height: 72pt; 
    width: 72pt;
    vertical-align: middle;
    position: relative;
    top: -6pt;
}
.footer {
    left: 16pt;
    font-size: 8pt;
    background-color: light-dark(#ffffff, #000000);
    padding-top: 8pt;
    padding-bottom: 16pt;
}

@media (max-width: 600px) {
    body {
        padding-top: 32pt;
    }

    h1 {
        font-size: 28pt;
    }

    h2 {
        margin-left: 0;
        margin-top: 10pt;
        font-size: 11pt;
        text-align: center;
        padding: 0 12pt;
    }

    .hero {
        padding: 0 12pt;
        flex-wrap: wrap;
        gap: 8pt;
    }

    .intro {
        width: auto;
        max-width: 100%;
        margin-top: 36pt;
        padding: 0 12pt;
    }

    .ash {
        height: 56pt;
        width: 56pt;
        top: -3pt;
    }

    .title-break {
        display: block;
    }

    .footer {
        position: static;
        margin-top: 24pt;
        padding: 12pt;
        font-size: 9pt;
        text-align: center;
        left: auto;
        top: auto;
    }
}
.liquid-glass {
  background: light-dark(rgba(255 255 255 / 0.2), rgba(0 0 0 / 0.2));
  backdrop-filter: blur(10px);
  border: 4px solid light-dark(rgba(0 0 0 / 0.18), rgba(255 255 255 / 0.18));
  box-shadow: 0 8px 32px 0 light-dark(rgba(224 217 120 / 0.37), rgba(31 38 135 / 0.37));
  border-radius: 20px;
  color: white;
  padding: 15px 30px;
  cursor: pointer;
  filter: url('#liquid-filter'); 
}    
