@import url('https://fonts.googleapis.com/css2?family=Lacquer&display=swap');

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.logo {
    position: relative;
    margin-top: 20px;
    opacity: 0;
    animation: slideDown 1s ease-out forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.center-text {
    font-size: 2em;
    font-family: 'Lacquer', cursive;
    transform: scale(0.5);
    opacity: 0;
    animation: zoomIn 1s ease-out forwards;
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.bottom-links {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.bottom-links a {
    color: white;
    text-decoration: underline;
    margin: 0 10px;
    font-size: 1em;
}

.bottom-links a:hover {
    text-decoration: underline;
}

.footer {
    font-size: 0.8em;
    margin-left: 10px;
}
