@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background: darkred;
}

.yo {
    font-style: italic;
}
.container {    
    position: absolute;
    display:flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

h1{
    color: #fff;
    text-align: center;
    font-size: 12vw;
    line-height: 1em;
    z-index: 1000;
    font-weight: 800;
    
}

h6{    
    color: #fff;
    text-align: center;
    font-size: 1.5vw;
    line-height: 0.5em;
    z-index: 1100;
    font-weight: 200;
    font-style: italic;
    letter-spacing: 0.15em;
}

h6 span {
    font-weight: 400;
    font-size: 2em;
    color:black;       
}

.row{
    display: block;
    z-index: 1100;
}

.bloque{
    position: absolute;
    width: 50px;
    height: 100px;
    background: red;
    box-shadow: 10px 10px 50px rgba(0,0,0,0.2);
    z-index: 100;
}