@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

    /* So the body can grow vertically with the content */
    min-height: 100vh;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    text-align: center;
    min-height: 100vh;       /* make sure it takes full screen height */
    width: 100%;
    /*text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;*/
}

.container img{
    width: 350px;
    height: auto;
    display: block;
    margin: 0 auto; /* centers the image horizontally */
    opacity: 0;
    animation: fade 2s 5s forwards;
}

@keyframes fade {

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

}

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

.catchy .catchy-title{
    display: inline-block;   /* sits on one line */
    white-space: nowrap;     /* prevents internal line breaks */
}

.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;
}

.catchy a{
    color: #6ab04c;
}

@media (max-width:425px) {
    .catchy .catchy-title{
        font-size: 15px;
    }
}

@media (max-width:600px) {
    .catchy{
        padding: 0;
    }
}
