body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    position: relative;
}

.infinity-container {
    position: relative;
    width: 400px;
    height: 200px;
}

.moving-text {
    position: absolute;
    font-size: 2rem;
    color: white;
    transform: translate(-50%, -50%);
}

.one {
    position: absolute;
    font-size: 1.5rem;
    color: white;
}

#home a{
    text-decoration: none;
    position: fixed;
    top: 20px;
    left: 20px;
    color: black;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#home a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}