@font-face {
  font-family: 'Young Serif';
  src: URL('/assets/YoungSerif-Regular.ttf') format('truetype');
}

body {
    background-color: #3d5a80;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#logo {
    font-family: Young Serif, serif;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

#logo img {
    max-width: 64px;
    height: auto;
    padding-right: 0.5em;
    position: relative;
    top: 10px;
}

#attribution {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 100%;
    font-family: Arial;
}

.animated-logo {
    opacity: 0; /* Initially invisible */
    transform: translateY(-100%); /* Start off the top of the screen */
    animation: fadeAndDrop 2.5s ease forwards;
}

@keyframes fadeAndDrop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}