body {
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif; /* Assuming you'd like to use the Inter font, otherwise replace as needed */
    font-size: 18px;
    line-height: 31px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a {
    color:white;
}
.container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin: 0px auto;
    display: flex;      
    flex-direction: column;  
    align-items: center; 
}


.mori-logo, .mori-image {
    display: block;
    margin: 0 auto;
}

.mori-logo {
    width: 144px;
    height: 36px;
}

.mori-image {
    width: 80px;
    height: 92px;
}


.space {
    height: 250px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.imprint {
    margin-top: 20px;
    font-size: 14px;
}

.speech-bubble {
    display: none; /* Initially hidden */
    background-color: black;
    border-radius: 3px;
    padding: 4px;
    position: relative;
    top: -40px;
    white-space: nowrap;
    font-weight: normal; 
    margin: 0 auto; 
    text-align: center; 



