/* General Page Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: black;
    color: white;
}

/* Header Image */
.welcome-img {
    max-width: 200px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Project Container with Flexbox */
#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
}

/* Project Links as Buttons */
.project-link {
    display: inline-block;
    margin: 20px;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    background: #444;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.project-link:hover {
    background: #666;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 599px) {
    body {
        background-color: #222;
    }
}

@media (min-width: 600px) {
    body {
        background-color: #111;
    }
}
