/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.4);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease-in-out;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon {
    font-size: 7em;
    color: #e74c3c;
    margin-bottom: 20px;
}

h1 {
    font-size: 4em;
    color: #e74c3c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

p {
    font-size: 2em;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 90%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px;
    }
    h1 {
        font-size: 3em;
    }
    p {
        font-size: 1.5em;
    }
}
