@keyframes start {
    0% {
        opacity: 0;
        top: 30px;
        filter: blur(50px);
    } 
    25% {
        opacity: 1;
        top: 0;
        filter: blur(0);
    }

    75% {
        opacity: 1;
        top: 0;
        filter: blur(0);
    }
    100% {
        opacity: 0;
        top: -150px;
        filter: blur(50px);
        height: 0;
    }
}

@keyframes copy {
    0% {
        display: block;
        opacity: 0;
            top: 30px;
            filter: blur(50px);
    }
    100% {
        display: block;
        opacity: 1;
        top: -110px;
        filter: blur(0);
    }
}

@keyframes copy2 {
    0% {
        display: block;
        opacity: 0;
        top: -100px;
        filter: blur(50px);
    }

    100% {
        display: block;
        opacity: 1;
        top: -150px;
        filter: blur(0);
    }
}

@keyframes paste {
    0% {
        display: block;
        opacity: 1;
        top: -110px;
        filter: blur(0);
        height: 150px;
    }

    100% {
        display: block;
        opacity: 1;
        top: -135px;
        filter: blur(0px);
        height: 150;
    }
}

h1 {
    top: 110px;
    position: relative;
    margin-left: 15px;
}

.intro {
    position: relative;
    font-size: 600%;
    width: 100%;
    height: 250px;
    vertical-align: middle;
    text-align: center;
    filter: blur(50px);
    top: 30px;
    opacity: 0;
    animation: start 4s forwards;
    animation-delay: 1s;
}

.copyStep {
    opacity: 0;
    filter: blur(50px);
    position: relative;
    width: 70%;
    height: 150px;
    
    animation: copy 1s forwards;
    animation-delay: 4s;
    background-color: #ffffff;
    border: solid #f06a85;
    border-width: 0 0 0 2px;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 0;
    padding: 10px;
    transition: all 0.5s;
}

.copyButton {
    background-color: #f06a85;
    width: 200px;
    height: 30px;
    border: #ffffff00 solid 2px;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s;
}

.copyButton:hover {
    border: #f06a85 solid 2px;
    background-color: #ffffff;
    color: #f06a85;
}

.ctop {
    margin: 5px;
}

.nextSteps {
    /*display: none;*/
    opacity: 0;
}

.copyStep.second {
    animation: paste 1.5s forwards;
}

.nextSteps.second {
    display: block;
    opacity: 0;
    filter: blur(50px);
    position: relative;
     width: 70%;
    height: 550px;
    background-color: #ffffff;
    border: solid #f06a85;
    border-width: 0 0 0 2px;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 0;
    padding: 10px;
    transition: all 0.5s;
    animation: copy 1.5s forwards;
    animation-delay: 0.5s;
    
}

.link {
    color: #f06a85;
}

.nextSteps.second ol {
    display: flex;
    flex-direction: column;
    font-size: 25px;
}

.nextSteps.second a {
text-decoration: none;
    color: #f06a85;
}

body {
    height: 100%;
}


footer {
    
}