body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: url('/image/background-wel.png') center center / cover no-repeat;
    display: flex;
    background-size: cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
}

.welcome-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 824px;
    width: 100%;
    min-height: 100vh;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
}
.language-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 300px;
    width: 350px;
    margin-top: 200px;
    align-items: center;
    text-align: center;
}

.button-language {
    width: 70%;
    background-color: rgb(38, 139, 227);
    margin: 30px auto 15px auto;
    font-size: 12px;
}

.button-language + .button-language {
    margin-top: 15px;
}

.language-container h1 {
    margin-bottom: 20px;
}

.welcome-icon img {
    width: 80px;
    margin-top: 20px;
}
.welcome-container-content {
    margin: 15px;
    text-align: left;
}
h1 {
    font-size: 27px;
    margin-bottom: 10px;
    font-weight: bolder;
    color: #333;
}

h2 {
    padding-top: 20px;
    font-size: 20px;
    font-weight:bolder;
    color: #333;
}
p {
    font-size: 16px;
    color: #333;
}

button {
    position: relative;
    bottom: 0px;
    left: 0px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    width: 100%;
    height: 40px;
}

button:hover {
    background-color: #45a049;
}

/* Mobile view */
@media (max-width: 768px) {
    body {
        background-size: cover;
    }
    
    .welcome-container {
        width: 95%;
        min-height: 100vh;
        box-shadow: none;
    }
    
    .welcome-icon img {
        width: 60px;
    }
    .language-container {
        margin-top: 50%;
    }
    .language-container h1{
        font-size: 22px;
    }
    #language-select {
        font-size: 10px;
    }
    h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    p {
        font-size: 14px; 
    }
    
    button {
        border-radius: 5px;
        height: 40px;
    }
}