.layout {
    min-height: 100dvh;
}

.header {
    background: #000;
    padding: 0.5rem;
    padding-bottom: 0;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}

.header::after {
    content: "";
    background: url(../images/merger.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 48px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: rotateY(180deg) rotateX(180deg);
}

/* main */
.main {
    background:
        url(../images/bg-grid-hero-m.svg),
        linear-gradient(180deg, #38b000, #70e000);
    background-position: center;
    background-size: contain;
    position: relative;
}

.main::after {
    content: "";
    background: url(../images/merger.svg);
    background-position: center;
    width: 100%;
    height: 48px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main .main-content img {
    width: 280px;
    filter: drop-shadow(0 0 25px rgb(0, 0, 0, 0.5));
}

.main .main-content h1 {
    color: #000;
    font-size: calc(0.8rem + 6vw);
}

.main .main-content p {
    margin-top: 1rem;
    font-size: calc(0.8rem + 1vw);
    text-transform: capitalize;
    color: black;
    max-width: 900px;
    padding: 0.5rem;
}

/* footer */
.footer {
    background: #000;
}

@media (max-width: 769px) {
    .navbar {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
        background: hsl(var(--base-200));
        height: 100%;
    }

    .navbar a {
        width: 100%;
        text-align: center;
    }
}
