* {
    font-family: "IBM Plex Mono", monospace;
    font-optical-sizing: auto;
    margin-top: 0;
    margin-bottom: 0;
}

body {
    background-color: white;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
}

h1 {
    font-style: none;
}

h2 {
    font-style: italic;
}

h3 {
    font-weight: 300;
    font-style: italic;
    margin: auto;
}

.left {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.center {
    margin: auto;
}

.right {
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

.banner {
    width: 100dvw;
    text-align: center;
    padding-top: 2dvh;
    padding-bottom: 2dvh;
}

.circuit {
    display: flex;
    flex-wrap: wrap;
}

.steps {
    display: flex;
    flex-wrap: wrap;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.rangeInput {
    margin-bottom: 3dvh;
    margin-top: 3dvh;
    margin-left: auto;
    margin-right: auto;
}

.sliderWidth {
    width: 100%;
}

.phaseInput {
    margin-bottom: 3dvh;
    margin-top: 3dvh;
    margin-left: auto;
    margin-right: auto;
}

#phases {
    zoom: 1.5;
}

.rangeText {
    align-content: center;
    text-align: center;
    width: 100%;
    margin-top: 3dvh;
    margin-left: auto;
    margin-right: auto;
}

.gradient {
    background: linear-gradient(225deg, #cc456c, #9931f5);
    background-size: 500% 500%;
    animation: buttonGrad 2s ease infinite;
}

@keyframes buttonGrad {
    0% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 50% 0%;
    }
}

button {
    font-weight: 300;
    text-decoration: none;
    color: white;
    border-color: white;
    border-width: 0;
    border-style: solid;
    border-radius: 50px;
    box-shadow: 2px 2px 5px lightgray;
    margin-top: 3dvh;
    margin-bottom: 3dvh;
    margin-left: auto;
    margin-right: auto;
}

.material-symbols-outlined {
    vertical-align: middle;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltiptext {
    visibility: hidden;
    width: max-content;
    top: -5px;
    left: 105%;
    font-size: 1rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(50px);
    border-radius: 50px;
    padding: 10px 10px;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
