body {
    background-image: url(pattern-online-gray.png);
    background-repeat: repeat;
    background-color: rgba(0, 187, 255, 0.285);
    background-blend-mode: multiply;
    margin: 0;
    padding: 0;
}

.title {
    font-size: 100px;
    transition: font-size 0.3s ease;
}

@media screen and (max-width: 490px) {
    .title {
        font-size: 60px;
    }
}

.container {
    align-items: center;
    max-width: 800px;
}

.statement-container {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    justify-content: center;
    border-radius: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.statement-text {
    font-size: 24px;
    margin-bottom: 15px;
}

.button {
    margin-top: 10px;
    padding: 10px;
}

.result {
    justify-content: space-between;
}


footer {
    background-color: #ffffff;
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 20px;
}

.slider-container {
    width: 100%;
}

.slider {
    width: 80%;
    -webkit-appearance: none;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.8;
    -webkit-transition: .2s;
    transition: opacity .2s;
    transition: width 0.3s ease;
}

.slider:hover:not([disabled]) {
    opacity: 1; /* Fully shown on mouse-over */
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: #3d9bff;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #409cff;
    cursor: pointer;
}

.flex-container {
    display: flex;
    align-items: center; /* Align items vertically in the center */
}