.gradientCount{
    background: linear-gradient(to right, #000000, #c2d5de);
    width: 100%;
    height: 300px;
}

.mainCount{
    width: 1000px;
    margin: 0 auto;
}

.mainCount h2{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 48px;
    margin: 60px 0 0 0;
    color: rgba(184, 255, 207, 0.84);
    opacity: 0;
    animation: FadeAnimation 1s ease-in-out 0s forwards;
}

.mainCount h3{
    text-align: center;
    font-weight: 100;
    font-size: 18px;
    color: rgb(184, 255, 207,0.5);
    margin: 0 0 60px 0;
    opacity: 0;
    animation: FadeAnimation 1s ease-in-out 0s forwards;
}


.terminalCount{
    background: black;
    color: rgba(184, 255, 207, 0.84);
    width: 100%;
    border-radius: 4px;
    padding: 12px 0 0 0;
    margin-top: 20px;
    opacity: 0;
    animation: SlideDownAnimation 1s ease-in-out 1s forwards,FadeAnimation 1s ease-in-out 0s forwards;
}

.userEnteredText{
    color: rgb(255,255,255,0.5);
    margin: 0;
    padding: 0;
    display: inline-block;
}
#terminalResultCount{
    width: 1000px;
    height: 600px;
    padding: 12px;
    overflow-y: auto;
    resize: none;
    border: none;
    font-size: 14px;
    line-height: 28px;
    display: block;
    color: rgba(150, 195, 164, 0.84);
}
#terminalResultCount a{
    color: rgba(150, 195, 164, 0.84);
    text-decoration: underline;
}

#terminalTextInput{
    background: black;
    display: block;
    border: none;
    border-top: 1px solid  rgb(255,255,255,0.2);
    border-radius: 0 0 4px 4px;
    width: 100%;
    color: rgba(150, 195, 164, 0.84);
    padding: 18px;
    font-size: 14px;
    outline: none;
}

@-webkit-keyframes FadeAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-moz-keyframes FadeAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-o-keyframes FadeAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes FadeAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-webkit-keyframes SlideDownAnimation {
    0% {opacity: -20px;}
    100% {opacity: 0;}
}

@-moz-keyframes SlideDownAnimation {
    0% {opacity: -20px;}
    100% {opacity: 0;}
}

@-o-keyframes SlideDownAnimation {
    0% {opacity: -20px;}
    100% {opacity: 0;}
}

@keyframes SlideDownAnimation {
    0% {opacity: -20px;}
    100% {opacity: 0;}
}
@media screen and (max-width: 1000px){
    .gradientCount{
        height: 220px;
    }
    .mainCount{
        width: 100%;
        padding: 0 12px;
    }
    .mainCount h2{
        font-size: 32px;
        margin: 0 0 40px 0;
    }
    #terminalResultCount{
        height: 500px;
    }
}