*{
    margin: 0;
    padding: 0;

}

body{
    position: relative;
   
    min-height: 100vh;
    background-color: #201C1C;
    font-family: 'Roboto';
    color: white;

}
.container
{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.block{
    position: absolute;
    width: 50px;
    height: 100px;
    background: #2C2C2C;
    box-shadow: 10px 10px 150px rgb(0, 0, 0.6);
}

.glow{
    top: 100px;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
}
.glow span{
    color: #fff;
    font-family: 'Roboto';
    font-size: 100px;
    font-weight: bold;
    color: white;
    animation: animate 2s linear infinite;
    width: 24px;
    height: 24px;
    
}
.woop{
    font-size: 50px;
    position: absolute;
    margin-top: 20%;
    margin-left: 150px;
}
.home
{
    margin-top: 20px;
    width: 150px;
    height: 50px;
    color: #FFF;
    font-family: 'Roboto';
    background-color: #DC7458;
    border-radius: 20px;
    border-style: none;
    margin-left: 20px;
    font-size:15px;
    transition: 0.5s;
    position: absolute;
}
.house
{
    width: 20px;
    margin-right:10px;
}
.home:hover{
    cursor: pointer;
    width: 145px;
    height: 45;
    background-color: #e06847;
}
.home:active{
 font-size: bold;
}
@keyframes animate {

    0%{
        color:#eeebea;

    }
    33.3%
    {
        color: #969290;
    }
    66.6%
    {
        color: #474646;
    }
    100%
    {
        color: #DC7458;
    }
    
}

.glow span:nth-child(1)
{
    animation-delay: 0s;
}
.glow span:nth-child(2)
{
    animation-delay: 0.1s;
}
.glow span:nth-child(3)
{
    animation-delay: 0.2s;
}
.glow span:nth-child(4)
{
    animation-delay: 0.3s;
}
.glow span:nth-child(5)
{
    animation-delay: 0.4s;
}
.glow span:nth-child(6)
{
    animation-delay: 0.5s;
}