body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.image-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.main-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin: 10px 0;
}

p {
    font-size: 1.2rem;
    opacity: 0.8;
}