* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.logo {
    max-width: 250px;
    max-height: 50vh;
    opacity: 0; /* Start with logo invisible */
    transition: opacity 2s ease-in-out; /* Smooth transition for fade-in */
}

.fade-in {
    opacity: 1;
}