* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
/*    display: flex;  */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #07252a
}
h2 {
    position: absolute;
    top: 3vh;
    font-size: 80px;
    color: cadetblue;
    width: 100%;
    text-align: center;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    line-height: 0.8em;
    outline: none;
    animation: animate 4s linear infinite;
}
h3 {
    color: yellow;
    font-weight: bold;
    font-size: 30px;
    transition: all 0.3s;
}
h3:hover {
    color: orange;
    font-size: 40px;
}
h4 {
    color: aquamarine;
    font-size: 20px;
    margin-top: 130px;
}
.tbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
    height: 200px;
}
.box {
    display: flex;
    float: left;
    flex-direction: row;
    position: relative;
    justify-content: center;
    font-size: 1em;
    color: cadetblue;
    width: 100%;
    text-align: center;
    height: 450px;
}
.sbox {
    height: 20px;
}


@keyframes animate {
    0% {
        color: #8e4742;
        text-shadow: none;
    }
    50% {
        color: #fff;
        text-shadow: 0 0 10px #03bcf4;
    }
    100% {
        color: #8e4742;
        text-shadow: none;        
    }
}

