::-webkit-scrollbar {
    display: none;
    visibility: hidden;
    opacity: 0
}

#main {
    padding: 0px 5px;
    height: 100vh;
    background-color: #4d5b64;
}

#main-alt {
    width: 100%;
    height: 100%;
    padding: 1px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    background-color: #4d5b64;
    position: relative; /* Position added */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.71); /* Arka plan rengi ve opakl?k */
    z-index: 5;
}

#img-float {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    background-color: #2a282b;
}

.button-container {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 6;
}
