body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
#container {
    position: relative;
    width: 100%;
    height: 100%;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.right_logo {
    position: absolute;
    top: 1rem;
    right: 32px;
    width: 166px;
}

#watermark {
    position: absolute;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background-image: url('../assets/watermark.png');
    background-size: 200px;
    background-repeat: space;
    pointer-events: none;
    opacity: 0.05;
    z-index: 1;
    transform: rotate(-45deg);
}

#info {
    position: absolute;
    top: 15px;
    left: 50px;
    background-color: rgba(37, 37, 37, 0.5);
    padding: 5px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

#avatar-container {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background-color: rgba(255, 255, 255);
    background-size: cover;
    background-position-y: center;
    border-radius: 50%;
}

#menu-container {
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0);
    border-radius: 20px;
    position: absolute;
    bottom: 7px;
    left: 50px;
}

#menu-container img {
    width: 12px;
    position: absolute;
    top: 4px;
    left: 2px;
}

#name {
    color: #fff;
    font-size: 18px;
    margin-right: 40px;
}

#mobile {
    display: flex;
    align-items: center;
}

#mobile img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* Responsive: Hide #name and #mobile when width < 600px */
@media screen and (max-width: 600px) {
    #info {
        background-color: rgb(255, 255, 255);
        padding: 0;
        border-radius: 50%;
    }

    #avatar-container {
        width: 50px;
        height: 50px;
        margin-right: 0;
        box-shadow: 3px 3px 3px #757574;
    }

    #menu-container {
        width: 20px;
        height: 20px;
        bottom: 0;
        left: 35px;
        box-shadow: 3px 3px 3px #757574;
    }

    #menu-container img {
        width: 15px;
        top: 5px;
    }
    
    #name,
    #mobile {
        display: none;
    }
}