body {
    background-color: #000100;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

h1 {
    font-size: 3em;
    margin: 20px 0;
}

p {
    font-size: 1.5em;
    margin: 10px 0;
}

.logo-container {
    display: inline-block;
    position: relative;
    margin: 20px auto;
}

.logo {
    max-width: 500px;
    display: block;
    transition: transform 1.5s ease-in-out;
}

.logo-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.logo-container:hover .logo {
    transform: scale(1.1);
    content: url('logo-hover.png');
}

.logo-container:hover .logo-text {
    opacity: 1;
}

.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: #666;
}
