* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.sentence-div {
    font-family: 'Slackey', serif;
    height: 90vh;
    background-color: black;
}

.sentence-container {
    margin: auto 10%;
    max-width: fit-content;
}

.content {
    font-size: 108px;
}

.fsl15 {
    font-size: 150px;
}

.fsl40 {
    font-size: 120px;
}

.fsl54 {
    font-size: 90px;
}

.fsl {
    font-size: 60px;
}

.slider-div {
    background-color: #4d4d4d;
    height: 10vh;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 15px;
    background-color: white;
    border: 2px solid #4d4d4d;
    border-radius: 10px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4d4d4d;
    color: white;
    border: 4px solid white;
    outline: 4px solid #4d4d4d;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .fsl15 {
        font-size: 120px;
    }
    .fsl40 {
        font-size: 100px;
    }
    .fsl54 {
        font-size: 80px;
    }
}