button, p, label, span, a, input {
    font-family: "Maven Pro", sans-serif;
}
body {
    height: 100vh;
    /* background: linear-gradient(135deg, #d6a3f1, #2a0aaa); */
    background: linear-gradient(0deg, #b62dff, #2a0aaa);
    background-attachment: fixed;
    text-align: center;
}
#footer{
    width: 90%;
    padding: 1em 3em;
}
footer p {
    padding-top: 0.8em;
    padding-bottom: 0.4em;
}
.copyright p {
    padding: 0.1em;
    font-size: 0.9em;
}
a {
    color: magenta;
}
#tip-jar {
    padding: 0.4em 0.4em 0.8em 0.4em;
}
#bmc-link-button {
    padding-top: 0.4em;
}
#bmc-preview {
    width: 80%;
    opacity: 0.5;
    background-color: lavender;
    margin-top: 0.5em;
    border-radius: 2em;
    box-shadow: 0 1em 2em rgba(27, 8, 53, 0.25);
    object-fit: cover;
}
#bmc-preview:hover {
    opacity: 1;
}
#bmc-preview:active {
    transform: translateY(4px);
}
#spacer {
    height: 1px;
}
.wrapper {
    width: 90%;
    max-width: 34.37em;
    background-color: rgba(177, 234, 255, 0.5);
    padding: 3em;
    margin: 20px auto;
    border-radius: 2em;
    box-shadow: 0 2em 3em rgba(27, 8, 53, 0.8);
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
}
#wheel {
    max-height: inherit;
    width: inherit;
    top: 0;
    padding: 0;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
#spin-button {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 26%;
    width: 26%;
    border-radius: 50%;
    cursor: pointer;
    border: 0;
    background: radial-gradient(#ffc0ff 50%, #4100ff 85%);
    box-shadow: 0 0.2em 0.3em rgba(27, 8, 53, 0.8);
    color: #4100ff;
    font-size: 1.8em;
    letter-spacing: 0.1em;
    font-weight: 600;
}
#spin-button:hover {
    background: radial-gradient(#ffe0ff 50%, #4100ff 85%);
}
#spin-button:active {
    transform: translate(-50%, -48%);
}
#arrow {
    position: absolute;
    width: 4em;
    top: 45%;
    right: -8%;
}
#final-value {
    font-size: 1.25em;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #202020;
    font-weight: 500;
}
.wrapper label {
    font-size: 0.8em;
    font-weight: 400;
}
#customize {
    font-size: 1.5em;
}
#selection-area {
    margin: 0.8em;
}
.options {
    display: inline-block;
}
#wheel-choices, #add-choice {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.choice-button {
    display: inline;
    border-radius: 1em;
    width: 6em;
    height: 2em;
    font-weight: 600;
    background-color: rgb(230, 230, 230);
}
input {
    align-self: center;
    width: 40%;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 0.5em;
    padding: 0.1em;
}
.weight, #new-weight {
    width: 5%;
    text-align: center;
}
.add-weight, .reduce-weight {
    border-radius: 1em;
    height: 2em;
    font-weight: 600;
    background-color: rgb(230, 230, 230);
}
.weight, .add-weight, .reduce-weight, .weight-text {
    display: inline;
}
@media screen and (max-width: 768px) {
    .wrapper {
        font-size: 12px;
    }
    img {
        right: -5%;
    }
}
@media only screen and (max-width: 550px) {
    .wrapper {
        max-width: 28em;
        font-size: 11px;
    }
    input {
        width: 60%;
    }
    #wheel {
        font-size: 10px;
    }
    #spin-button {
        font-size: 1.5em;
    }
}
@media only screen and (max-width: 380px) {
    .wrapper {
        max-width: 24em;
    }
    #spin-button {
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 330px) {
    .wrapper {
        max-width: 22em;
        font-size: 10px;
    }
    #spin-button {
        font-size: 1em;
    }
}