html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: black;
    text-align: center;
    margin: 0;
}

video {
    width: 100%;
    height: 100%;
    margin-top: -20px;
  }

h1 {
    font-family: Poppins, sans-serif;
    font-size: 86px;
    color: white;
    text-align: center;
}

h2 {
    font-family: Poppins, sans-serif;
    font-size: 47px;
    color: white;
    text-align: center;
}

h3 {
    font-family: Poppins, sans-serif;
    font-size: 30px;
    color: rgb(57, 57, 57);
    font-weight: 600;
}

p {
    font-family: Poppins, sans-serif;
    font-size: 30px;
    color: white;
    text-align: center;
}

.nav {
    width: 100vw;
    height: 100%;
    z-index: 1;
}

.nav img{
    margin: auto;
    width: 100vw;
}

.footer {
    width: 100vw;
    height: 25vh;
}

.footer img{
    margin: auto;
    width: 100vw;
}

.plant{
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
}

button {
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    background-color: #2c693e;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    box-shadow: 
        0 6px 10px rgba(0, 0, 0, 0.3), 
        0 3px 5px rgba(255, 255, 255, 0.2) inset,
        0 -3px 5px rgba(0, 0, 0, 0.3) inset;

    transition: all 0.2s ease-in-out;
  }

button:hover {
    background-color: #1c4f29;
    box-shadow: 
        0 8px 14px rgba(0, 0, 0, 0.4), 
        0 3px 5px rgba(255, 255, 255, 0.2) inset, 
        0 -3px 5px rgba(0, 0, 0, 0.3) inset;
  }  

  button:active {
    transform: scale(0.98);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.5), 
        0 2px 4px rgba(255, 255, 255, 0.2) inset, 
        0 -2px 4px rgba(0, 0, 0, 0.3) inset;
  }  

section.hero {
    width: 100vw;
}

section.hero h1 {
    margin-bottom: 20px;
}

section#stick {
    position: sticky;
    top: 0;
}

section.subhead {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    width: 100vw;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
}

section.vid {
    height: 3000px;
    z-index: 2;
    width: 100vw;
}

section.vid div.holder {
    position: sticky;
    top: 0;
}

section.vid video {
    height: 102vh;
    width: 100vw;
    object-fit: cover;
}

section.helping_hand{
    padding-top: 3rem;
    padding-bottom: 6rem;
    background:
        radial-gradient(ellipse at top, #EBF4EE, #adc0b4),
        radial-gradient(ellipse at bottom, #adc0b4, #EBF4EE);
    width: 100vw;
}

.helping_hand h2{
    color: rgb(57, 57, 57);
    font-size: 64px;
}

.helping_hand p{
    color: rgb(57, 57, 57);
    font-size: 24px;
}

.helping_hand img{
    width: 100vw;
}

section.short{
    padding-top: 1.5rem;
    padding-bottom: 5rem;
}