body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    color: #fff;
}

.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    text-align: center;
}

.project-title {
    font-size: 4rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3);
}

body.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}
