section.banner {
    margin-top: 4rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.banner h1 {
    font-size: 6rem;
    width: auto;
    padding: 0 1rem;
    font-family: "Menlo", monospace;
    text-align: center;

    /* background: linear-gradient(60deg, #867e5b, #4c796e, #c1e3db, #5c6f51, #ddcf9c); */
    /* background: linear-gradient(60deg, #4c796e, #9cbab3, #5c6f51); */
    background: linear-gradient(60deg, #867e5b, #4c796e, #ddcf9c);
    background-size: 150% 150%;
    animation: gradient-animation 18s ease infinite;
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    -webkit-background-clip: text;

    /* border: 5px solid transparent;
    border-image: linear-gradient(60deg, #f4e5ad, #518176, #a7b3a0, #f4e5ad) 1;
    border-image-slice: 1;
    border-image-width: 5px;
    padding: 1rem; */
    /* margin: auto;
    width: 15rem; */
}

@keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

section.banner p {
    text-align: center;
    max-width: 95vw;
    font-size: 1.25rem;
    font-family: "Menlo", monospace;
    /* font-weight: bold; */
    text-transform: uppercase;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #394e4a;

    /* background: linear-gradient(60deg, #867e5b, #4c796e, #c1e3db, #5c6f51, #ddcf9c); */
    /* background: linear-gradient(60deg, #4c796e, #9cbab3, #5c6f51); */
    background: linear-gradient(60deg, #867e5b, #4c796e, #ddcf9c);
    background-size: 150% 150%;
    animation: gradient-animation 18s ease infinite;
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    -webkit-background-clip: text;
}

@media (min-width:768px) {
    section.banner {
        width: 85vw;
    }
}


@media (min-width:1200px) {
    section.banner {
        width: 80vw;
    }
}

@media (min-width:1400px) {
    section.banner {
        width: 75vw;
    }
}