﻿
/* Animations */
.card {
    background-color: #6E7A70;
}
.animate-title {
    animation: fadeInDown 1.5s ease-in-out;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1.5s ease-in-out;
}

.float-in {
    animation: floatIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flame Effect */
.flame span {
    height: 300px;
    width: 100%;
    background-image: url("https://dl.dropbox.com/s/r2s8s2r17wi0xm6/flame.png?dl=0");
    background-position: 0 -1000px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fire 4s linear infinite;
    text-shadow: 1px 2px 2px #000;
}

.flame h1 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin: 0;
}

/* Fire Animation */
@keyframes fire {
    0% {
        background-position: 0% -50%;
    }

    100% {
        background-position: 0% -25%;
    }
}

/* Responsive Text */
h1, p {
    word-wrap: break-word;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
   /* background-color: #eee7e7*/
}

/* Media Queries */
@media (max-width: 992px) {
    .flame h1 {
        font-size: 32px;
    }

    .flame span {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .flame h1 {
        font-size: 28px;
    }

    .flame span {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .flame h1 {
        font-size: 24px;
    }

    .flame span {
        height: 100px;
    }

    p {
        font-size: 14px;
    }
}
