body {
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 'header' 'content' 'footer';
    min-height: 100vh;
}

main {
    grid-area: content;
}

.footer {
    grid-area: footer;
}

.hero {
    background-image: url("pexels19201080.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
    min-height: 60vh;
}

.hero h1 {
    font-family: 'Acme', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.head-site {
    grid-area: header;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.intro {
    background: #f2f2f2;
    padding: 40px 20px;
}

.hero-content {
    color: #000000;
    text-align: center;
}

.section-content {
    text-align: center;
}

.btn-hero {
    color: #fff;
    font-size: 15px;
    border-radius: 15px;
    background-color: rgba(66, 255, 28, 0.51);
    padding: 10px 25px;
    cursor: pointer;
    transition: 0.3s;
    border-color: rgba(0, 0, 0, 0);
    font-weight: normal;
}

.btn-hero:hover {
    background-color: rgba(139, 255, 0, 0.75);
}

.hero-image {
    background-image: url('BGsplash-WEBP.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 60vh;
    background-repeat: no-repeat;
}