html, body {
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    background-color: #000;
}

.bg {
    background:url('./img/plueck.png');
    background-size: cover;
    background-position:left;
    background-repeat: no-repeat;
    filter:blur(8px);
    -webkit-filter: blur(8px);
    height:100%;
}

.box {
    background-color: #FFF;
    background-color: rgba(255,255,255, 0.9); 
    position: absolute;
    bottom:50px;
    z-index: 2;
    padding: 0.5cm;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.box img {
    width:100%;
}

@media (min-width:0px)  { 
    /* Mainly Phones */
    .box {
        width:calc(100% - 44px);
        max-width:600px !important;
    }
}
@media (min-width:961px)  {
    /* Tablets and PCs */
    .box {
        left: 50px;
        width:11cm;
        min-width:600px !important; 
    }
    a:hover{
        filter:contrast(400%);
    }
}

