@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');

body {
    font-family: Chewy;
    background-color: rgb(173, 70, 99);
    width: 100%;
    height: 100%;
    color: rgb(173, 70, 99);
}


#jar {
    max-width: 90dvw;
    max-height: 85dvh;
    display: block;
    margin: auto;

    z-index: 1;
}


h1 {

    color: #c998cb;
    text-align: center;
    font-size: 5dvh;

}

div {

    top: 35%;
    left: calc(50% - 80px);
    text-align: center;
    position: absolute;
    z-index: 5;
}

h2 {
    font-size: 7dvh;
}

h3 {
    font-size: 4dvh;
}


button {
    font-family: Chewy;
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 3dvh;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgb(173, 70, 99);
    background-image: linear-gradient(to top left,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0));
    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.6),
        inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

button:hover {
    background-color: rgb(173, 70, 99);
}

button:active {
    box-shadow:
        inset -2px -2px 3px rgba(255, 255, 255, 0.6),
        inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}