body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #ffffff; /* White background */
    overflow: hidden;
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loop-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: black;
    white-space: nowrap;
    position: absolute;
    opacity: 0;
}

#text1 {
    top: 10%;
    left: 0;
}

#text2 {
    bottom: 10%;
    right: 0;
}

#url {
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 5px;
}