body {
    text-align: center;
    background: linear-gradient(#c8e6ff, #eaf7ff);
    margin: 0;
}

h1 {
    background: #ffd54f;
    padding: 1%;
    border-radius: 2%;
    font-size: 2vw;
}

#missatge {
    font-size: 1.5vw;
    margin: 2%;
    padding: 1%;
    background: white;
    border-radius: 1%;
    transition: 0.3s;
}

.joc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8%;
    margin-top: 3%;
}

.zona-osset {
    position: relative;
    width: 30%;
    border: 0.5vw dashed #aaa;
    border-radius: 3%;
    padding: 5%;
    background: white;
    transition: 0.3s;
}

.osset-base {
    width: 100%;
}

.roba-posada {
    position: absolute;
    display: none;
}

#gorra {
    width: 40%;
    top: 0%;
    left: 30%;
}

#ulleres {
    width: 40%;
    top: 17%;
    left: 30%;
}

.roba-container {
    display: flex;
    flex-direction: column;
    gap: 5%;
    width: 15%;
}

.item {
    background-color: white;
    margin:10px;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    cursor: grab;
    transition: 0.2s;
}

.item:hover {
    transform: scale(1.05);
}

button {
    margin-top: 3%;
    padding: 1% 3%;
    font-size: 1.5vw;
    border-radius: 1vw;
}
#home {
    position: fixed;
    top: 25px;
    left: 25px;
    height: 75px;
    width: 75px;
    border-radius: 100%;
    border: 3px solid #3A3A3A;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    opacity: 0.5;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home:hover {
    transition: 0.3s ease;
    transform: scale(1.05);
    opacity: 1;
}
#home svg {
    width: 28px;
    height: 28px;
}