body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #000000, #1c1c1c);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 250px;
    margin-bottom: 2rem;
}

.message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #dcdcdc;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 32px;
    height: 32px;
    filter: invert(1);
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}
