* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: darkblue;
}

.container{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    z-index: 1000;
    padding: 50px;
    background: rgb(2, 3, 46); /* Fallback for older browsers without RGBA-support */
    background: rgba(2, 3, 46, 0.5);
    transform-style: preserve-3d;
}

h2{
    color: #fff;
    text-align: center;
    font-size: 3vw;
    line-height: 0.6em;
    transform: translateZ(30px);
    text-shadow: 5px 5px 2px  rgba(4, 1, 31, .6);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
h2 small{
    font-size: 0.5em;
    text-transform: uppercase;
}

.block{
    position: absolute;
    width: 50px;
    height: 100px;
    background-color: darkblue;
    box-shadow: 10px 10px 50px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.block span{
    position: absolute;
    font-size: .5em;
    opacity: .5;
    color: transparent;
    text-shadow: 0 0 1px rgba(4, 1, 31, 1);
}