body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.tag {
    padding: 20px 40px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    position: absolute;
    transform: translateY(-100vh);
    opacity: 0.5;
    animation: float linear infinite;
}

.tag h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #212529;
}

.main-tag {
    z-index: 100;
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20vh);
    }
}

/* actions related to hole and rope */

.rope {
    position: absolute;
    left: -50px;
    top: -50px;
    animation: swing 2s infinite;
    transform-origin: 50% 100%;
}

@keyframes swing {
    0% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    100% { transform: rotate(-15deg); }
}

.hole {
    position: absolute;
    left: 10px;
    top: 45%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: black;
}



footer {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(128, 128, 128, 0.5);
    padding: 5px 15px;
    font-size: 1rem;
}
