* {
    margin: 0;
    padding: 0;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    background-image: url(/sunset.jpg);
}

h1 {
    font-size: clamp(1.8rem, calc(7vh + 1rem), 5rem);
}

h2 {
    font-size: clamp(2.8rem, calc(15vh + 1rem), 18rem);
}

.container {
    padding-top: 15vh;
    margin: 2em auto;
    background-color: rgb(255 255 255 / 50%);
    background-size: cover;
    max-width: 80%;
    border-radius: 1em;
}

.increment-button,
.decrease-button {
    font-size: 2em;
    margin: 0 0.2em;
    width: 2em;
    height: 2em;
    border-radius: 0.5em;
    border-style: none;
    color: white;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 40%);
}

.increment-button {
    background-color: purple;
}

.decrease-button {
    background-color: deepskyblue;
}

.increment-button:hover,
.decrease-button:hover
.save-button:hover {
    background-color: darkorange;
    transition: background-color 0.8s ease-in-out;
}

.increment-button:active,
.decrease-button:active {
    transform: scale(0.9, 0.9);
}

.save-container {
    padding: 1em 0;
}

.save-button {
    background-color: rgb(255, 166, 0);
    font-size: 2em;
    margin: 0 0.2em;
    padding: 0.2em 0.5em;
    border-radius: 0.5em;
    border-style: none;
    color: white;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 40%);
}

.save-container > h3,
.save-container > p {
    padding-top: 1em;
}

.save-container > p {
    font-size: 1.5em;
}

.gif-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 2em;
    padding-top: 4em;

}
