* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;

    height: 100vh;

    overflow: hidden;

    background: url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;

    background-position: center;

    position: relative;

}

.logo>img {
    max-width: 100%;
}

.overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg,

            rgba(0, 60, 40, .88),

            rgba(0, 0, 0, .75));

}

.hero {

    height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    position: relative;

    z-index: 2;

    color: #fff;

    padding: 20px;

}

.logo {

    width: 150px;

    height: 100px;

    margin: auto;

    border-radius: 50%;

    background: #fff;

    color: #0b6d45;

    font-size: 55px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 30px;

    box-shadow: 0 0 35px rgba(255, 215, 0, .5);

    animation: float 3s infinite ease-in-out;

}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}

h3 {

    letter-spacing: 8px;

    font-weight: 300;

    margin-bottom: 10px;

}

h1 {

    font-size: 70px;

    font-weight: 700;

    margin-bottom: 20px;

    color: #FFD700;

}

p {

    font-size: 20px;

    line-height: 35px;

    max-width: 700px;

    margin: auto;

    margin-bottom: 40px;

}

.buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

}

.btn {

    padding: 16px 40px;

    background: #FFD700;

    color: #000;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: .4s;

}

.btn:hover {

    transform: translateY(-5px);

}

.btn-outline {

    background: transparent;

    border: 2px solid #FFD700;

    color: #FFD700;

}

.count {

    margin-top: 50px;

    font-size: 28px;

    letter-spacing: 4px;

    color: #fff;

    animation: blink 2s infinite;

}

@keyframes blink {

    50% {

        opacity: .4;

    }

}

@media(max-width:768px) {

    h1 {

        font-size: 42px;

    }

    p {

        font-size: 16px;

        line-height: 30px;

    }

    .logo {

        width: 80px;

        height: 80px;

        font-size: 40px;

    }

}