.welcome-screen {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-image: url(/anasayfa/welcome.svg);
    background-color: #333;
    background-size: cover;
    background-position: center center;
    box-sizing: border-box;
}

.welcome-screen::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.089);
    z-index: 1; /* Katmanın resim ile içerik arasında olmasını sağlar */
}

.welcome-content {
    position: relative;
    z-index: 2; /* İçeriğin üstte görünmesini sağlar */
    text-align: center;
    width: 100vw;
}

#continue-btn {
    margin-bottom: 150px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background-color: transparent;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInFromBottom 2s ease-in;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#continue-btn:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
}

.welcome-title-container {
    width: 100vw;
    padding: 275px 10% 10px 10%;
    margin-left: -150px;
    text-align: left;
    box-sizing: border-box;
    z-index: 2;
}

.welcome-title {
    color: white;
    max-width: 35%;
    font-size: 3.0rem;
    font-weight: bold;
    margin: 0;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: slideInFromLeft 1.5s ease-out;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 1.5rem;
        max-width: 80%;
    }

    .welcome-title-container {
        padding: 300px 5% 10px 5%;
        margin-left: 0;
        text-align: center;
    }
}