body {
    font-family: 'Arial', sans-serif;
    background: #121212;
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    border: 2px solid #ff4500;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.7);
    background: #1f1f1f;
    max-width: 800px;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    color: #ff4500;
}

header p {
    font-size: 1.2em;
    color: #ffdd57;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.images img {
    width: 300px;
    height: auto;
    border: 2px solid #ff4500;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.images img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.9);
}

footer {
    margin-top: 20px;
}

footer p {
    font-size: 1em;
    color: #ffdd57;
}

footer a {
    color: #ff4500;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffdd57;
}
