html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    flex-direction: column;
}
.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.fade-text {
    font-size: 1rem;
    text-transform: lowercase;
    opacity: 0;
    color: white;
    transition: opacity 1.5s ease-in-out, transform 0.15s ease-in-out;
}
.fade-text:hover {
    transform: scale(1.2);
}
.footer-container {
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    opacity: 0.1;
    font-size: 16;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
}

.welcome {
    opacity: 0;
    font-size: larger;
    transition: opacity 1.5 ease-in-out;

}
