body {
    margin: 0;
    height: 100vh;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    color: white;
}

.word-display {
    font-size: 200px;
    text-align: center;
}

.container {
    text-align: center;
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-text {
    font-size: 100px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    width: 100%;
    text-align: center;
    display: none;
}

.bottom-text {
    font-size: 60px; 
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 100%;
    text-align: center;
    display: none;
}

img {
    max-width: 50%;
    height: auto;
}
