* {
    padding: 0px;
    margin: 0px;
}

body {
    background-color: gray;
}

/* UPPER */
#upper {
    h1 {
        color: white;
        padding-top: 10px;
        text-align: center;
        font-family: arial black;
        font-size: 39px;
        letter-spacing: 7px;
    }

    h3 {
        color: white;
        text-align: center;
        font-size: 31px;
        letter-spacing: 7px;
        word-spacing: 7px;
    }
}

/* IMAGE SECTION */
#imgsec {
    transition: transform 0.6s ease;

    .card1 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card2 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 100px;
            left: 500px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card3 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 100px;
            left: 1000px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card4 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 550px;
            left: 10px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card5 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 550px;
            left: 500px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card6 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 550px;
            left: 1000px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card7 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 1000px;
            left: 10px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card8 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 1000px;
            left: 500px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

    .card9 {
        img {
            height: 350px;
            width: 400px;
            margin-left: 50px;
            margin-top: 50px;
            border-radius: 30px;
            position: absolute;
            top: 1000px;
            left: 1000px;
            transition: all 0.6s ease;
        }

        img:hover {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(206, 137, 27, 0.45);
        }
    }

}




/* FOOTER */
#footer {
    width: 100%;
    height: 950px;
    text-align: center;
    padding: 40px 0;

    #footer {
        display: none;
        visibility: hidden;
        height: 0;
        overflow: hidden;
    }

}

.visit-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    position: absolute;
    top: 1500px;
    left: 650px;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.visit-btn {
    animation: pulse 1s infinite;
}