body{
}
/* kleurenspectrum donker thema*/
body.dark-theme {
    --schaduw: drop-shadow(1px 1px 0 white) drop-shadow(-1px -1px 0 white);  
}

           
.aside{
    position: absolute;
    bottom: 30px;
}
.bol {
    display: flex;
    align-items: center;
}
.bol img{
    -webkit-filter: var(--schaduw);
}
.object {
    height: 100px;
    padding: 0;

}

.text {
    padding: 0;
    visibility: hidden;
    opacity: 0;
    font-size:50px;
    transition: all 1.5s ease-in-out; 
    transition-timing-function: ease-out;
    margin: 0;
}
@media screen and (max-width: 768px){
    .object{
        height: 75px;
    }
    .text{
        font-size:30px; 
    }
}
.object:hover {
    cursor: pointer;
}
.object:hover + .text {
    visibility: visible;
    opacity: 1;
}