* {
    padding: 0;
    margin: 0;
}
body {
    color: #161654;
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {

    border-top: 2px solid  #161654;
    border-bottom: 2px solid  #161654;
    width: 700px !important;
    height: 120px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation-name: box;
    animation-duration: 4s;
    animation-timing-function: ease;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
}
.welcome {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 80px;
    animation-name: wel;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    text-shadow:0 5px rgba(30, 30, 121,0.3);

}
.go-away {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 80px;
    position: absolute;
    animation-name: go;
    animation-duration: 4s;
    text-shadow:0 5px rgba(30, 30, 121,0.3);


}
@keyframes box {
    0% {
        height: 0px;
        width: 0%;
    }
    10% {
        height: 0px;
        width: 300px;
    }
    20% {
        height: 120px;
    }
    80% {
        height: 120px;
    }
    90% {
        height: 0px;
    }
    100% {
        height: 120px;

    }

}
@keyframes wel {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    91% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes go {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    91% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
