* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    overflow: hidden;
}

.image img{
    width: 1500px;
    height: 900px;

}

.container {
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
}

.message h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.message p {
    font-size: 18px;
    color: #7F8C8D;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 30px;
    }

    .message h1 {
        font-size: 28px;
    }

    .message p {
        font-size: 16px;
    }
}
