h1.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
}

h1.tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 800;
    font-style: normal;
    font-size: 96px;
}

body {
    /* Linear gradient from lilac to a very light lilac */
    background: linear-gradient(to bottom, #AA85AA, #E3C9E3);
    height: 100%; /* Ensure the background covers the full page height */
    margin: 0;
}

.sticky-buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

.gradient-text {
    background: linear-gradient(to bottom, #AA85AA, #E3C9E3); /* Gradient colors from top to bottom */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Make the actual text color transparent */
}
