* {
    box-sizing: border-box;
    background: #26324a;
}
body{
    display: flex;
}
h1{
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    color: white;
    font-size: 8vw;
}

egg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #26324a;
    /*background: #36393f;*/
}
.eggo {
    height: 50vmin;
}
.eggo__lines {
    -webkit-animation: code 1s infinite linear;
    animation: code 1s infinite linear;
}
@-webkit-keyframes code {
    to {
        transform: translate(0, -125px);
    }
}
@keyframes code {
    to {
        transform: translate(0, -125px);
    }
}