
#blob {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 400px; /* عرض الصورة الثابت بوحدة البكسل */
    max-width: 100%;
    height: auto;
    filter: blur(4px);
}

.text {
    position: absolute;
    top: calc(50% + 140px); /* المسافة بين الصورة والنص هنا هي 50 بكسل */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
    font-family: sans-serif;
    overflow: hidden;
    font-size: 2rem;
    animation: typing 2s steps(40, end);
    width: auto;
    filter: blur(1px);
    text-align: center;
}

    @media only screen and (min-width: 320px) {
    img {
        width: 700px; /* تحديد عرض الصورة بوحدة البكسل عند عرض الشاشة 320px أو أكبر */
        filter: blur(3px);
       
    }
    .text {
        font-size: 5vw;
        
    }
}

@media only screen and (min-width: 768px) {
    img {
        width: 600px; /* تحديد عرض الصورة بوحدة البكسل عند عرض الشاشة 768px أو أكبر */
        filter: blur(4px);
        
    }
    .text {
        font-size: 2rem;
        top: calc(50% + 180px);
        
    }
}

@media only screen and (min-width: 1200px) {
    img {
        width: 600px; /* تحديد عرض الصورة بوحدة البكسل عند عرض الشاشة 1200px أو أكبر */
    }
    .text {
        font-size: 2rem;
        top: calc(50% + 180px);

    }
}



@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(4px);
}


.controls {
    background: #3f4656;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 20px -1px rgba(18, 22, 33, .7);
}

@media (max-width: 1200px) {
    .controls {
        margin-top: -4%;
    }
    
}

@media (max-width: 600px) {
    .controls {
        flex-direction: column;
    }

}

.controls label {
    color: #cdd9ed;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .controls label {
        margin-bottom: 12px;
    }
}

.controls [type="range"] {
    width: 160px;
}

@media (max-width: 600px) {
    .controls [type="range"] {
        width: 280px;
    }
}

.controls>div:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .controls>div:not(:last-child) {
        margin: 0 0 24px 0;
    }
}

.rangeSlider {
    position: relative;
    background: none;
    border: 1px solid #fff;
    border-radius: 6px;
    cursor: pointer;
}

.rangeSlider.rangeSlider__horizontal {
    height: 10px;
    width: 160px;
}

.rangeSlider .rangeSlider__fill {
    border-radius: 7px;
    background: #fff;
    position: absolute;
}

.rangeSlider .rangeSlider__fill:before {
    content: '';
    left: -2px;
    top: -2px;
    bottom: -2px;
    right: -2px;
    border: 2px solid #3f4656;
    border-radius: 6px;
    position: absolute;
}

.rangeSlider .rangeSlider__fill__horizontal {
    height: 100%;
    top: 0;
    left: 0;
}

.rangeSlider .rangeSlider__handle {
    border: 2px solid #3f4656;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    display: inline-block;
    width: 22px;
    height: 22px;
    position: absolute;
    background: white;
    border-radius: 50%;
}

.rangeSlider .rangeSlider__handle__horizontal {
    top: -7px;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}

*:before,
*:after {
    box-sizing: inherit;
}

html,
body {
    overflow: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Source Sans Pro', Arial;
    background: #d0d4da;
}

body .dribbble {
    position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
}

body .dribbble img {
    display: block;
    height: 28px;
}