body{
    background: #000;
    font-family: sans-serif;
}

.container{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.container img{
    width: 350px;
    height: auto;
    opacity: 0;
    animation: fade 2s 5s forwards;
}

@keyframes fade {

    0%{opacity: 0;}
    100%{opacity: 1;}
    
}

.container span{
    /* color: white; */
    text-transform: uppercase;
    display: block;
}

.text1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 8px;
    /* begining margin bottom */
    margin-bottom: 20px;

    /* this bring the text2 on the text1 and is used to start the animation*/
    /* margin-bottom: -40px; */

    color: white;

    /* then make text2 invisible */
    background: black;

    position: relative;

    animation: text 5s 1;
}

.text2{
    font-size: 30px;
    color: #6ab04c;
    /* color: var(--dark-color); */
    margin-bottom: 150px;
}

@keyframes text {
    0%{
        color: black;
        margin-bottom: -40px;
    }

    30%{
        letter-spacing: 25px;
        margin-bottom: -40px;
    }

    85%{
        letter-spacing: 8px;
        margin-bottom: -40px;
    }
}

.catchy{
    line-height: 2;
    text-align: left;
    margin: 0 auto;
    width: 80%;
    padding: 0 20%;
    opacity: 0;

    animation: animateCatchy 3s 6s forwards;
}

@keyframes animateCatchy {
    0%{opacity: 0;}
    25%{opacity: 0.25;}
    50%{opacity: 0.5;}
    75%{opacity: 0.75;}
    100%{opacity: 1;}
}

.catchy span{
    color: white;
}

.catchy .catchy-title{
    /* text-align: center; */
    font-size: 25px;
    letter-spacing: 8px;
    font-weight: 700;
}

.catchy .catchy-message, .catchy-contact-us{
    letter-spacing: 3px;
    font-size: 16px;
    text-transform: capitalize;
}

.catchy a{
    color: #6ab04c;
}

/* MEDIA */
@media (max-width:425px) {
    .text1{
        font-size: 30px;
    }

    .catchy .catchy-title{
        font-size: 15px;
    }
}


@media (max-width:600px) {
    .text1{
        font-size: 40px;
    }
    .catchy{

        padding: 0;
    }
}