@charset "UTF-8";
body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

h1{
    z-index: +1;
    position: fixed;
    top: 3%;
    left: 3%;
    text-align: left;
    font-size: 2vw;
    font-family: 'Space Mono', monospace;
    color: white;
    text-transform: uppercase;
}
h2{
    z-index: +1;
    position: fixed;
    top: 3%;
    right: 3%;
    text-align: right;
    font-size: 2vw;
    font-family:'Space Mono', monospace;
    color: white;
    text-transform: uppercase;
}

.container{

    position: relative;
    width: 100vw;
    height: 50vh;
    background-color: black;
    
}
#text {
    z-index: +1;
    position: fixed;
    top: 30%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-family:'DotGothic16', sans-serif;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
}
#text span{
    transition: 0.5s;
}
#text:hover 
{
    margin-top: 0px;
    margin-left: 0px;
}       
#text:hover span
{
    color:#fff;
    text-shadow: 0 0 10px #fff;
    text-shadow: 0 0 20px #fff;
    text-shadow: 0 0 40px #fff;
    text-shadow: 0 0 80px #fff;
    text-shadow: 0 0 120px #fff;
    text-shadow: 0 0 160px #fff;

}
.container2{
    position: relative;
    width: 100vw;
    height: 50vh;
    background-color: black;

}

#text2 {
    position: relative;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-family: 'DotGothic16', sans-serif;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
}
#text2 span{
    top: 50%;
    left: 50%;
    transition: 0.5s;
}
#text2:hover 
{
    margin-top: 0px;
    margin-left: 0px;
}       
#text2:hover span
{
    color:#fff;
    text-shadow: 0 0 10px #fff;
    text-shadow: 0 0 20px #fff;
    text-shadow: 0 0 40px #fff;
    text-shadow: 0 0 80px #fff;
    text-shadow: 0 0 120px #fff;
    text-shadow: 0 0 160px #fff;

}
