html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Garante que o html e o body ocupem toda a altura */
    /* overflow: hidden; /* Evita qualquer rolagem indesejada */
}

body {
    background-image: url('../img/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixa a imagem de fundo */
}

.container {
    max-width: 100%;
    overflow: hidden;
}

#photoContainer {
    width: 300px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

img.draggable {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#nameIndicators {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.name-box {
    width: 110px;
    padding: 10px;
    background-color: #f1f1f1;
    text-align: center;
    font-size: 1.0rem;
    font-weight: bold;
    color: #333;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

#leftBox {
    position: absolute;
    left: 0px;
    bottom: 0;
}

#rightBox {
    position: absolute;
    right: 30px;
    bottom: 0;
}
