body{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Black Han Sans', sans-serif;
    background-image: url("../img/fons.jpg");
	background-size: cover;
}

.capsal {
        display: flex;
        margin-bottom: 20px;
    }

#casa {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
        z-index: 1000;
    }
    
#container-descripcio {
        max-width: 900px;
        margin: 0 auto 20px auto;
        padding: 10px;
        background-color: #1caec2;
        border-radius: 10px;
    }
    
#descripcio p {
        font-size: 1rem;
        margin: 0;
    }


#botons {
    display: flex;
    gap: 10px; 
    margin: 20px 0;
    flex-wrap: wrap; 
}

button{
    top:5vh;
    position: relative;
    height: 50px;
    width: 150px;
    font-weight: bold;
    border-radius: 12px; 
    background-color: #1caec2; 
    margin: 15px; 
    cursor: pointer;
}
button:hover{
        background-color: #21c6d8; 
        box-shadow: 0px 0px 8px 2px cyan; 
        transform: scale(1.05); 

}
#container{
    position: relative;
    top:10vh;
    min-height: 70px;
    width: 90vw;
    border-bottom: 3px double lightgrey;
    border-right: 3px double lightgrey;
    border-left: 3px double lightgrey;
    background-color: rgb(234, 250, 248);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}
.ball-in {
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s ease;
}