#section1 {
    height: 64vh;
    display: grid;
    padding: 15vh;
    grid-template-rows: 2fr 1fr 1fr 2fr;
}

#home-top-branding {
    display: grid;
    justify-content: center;
}

#home-top-title {
    font-size: 4.5rem;
    color: rgb(39, 117, 234);
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1rem;
}

#home-top-slogan {
    justify-self: right;
    margin-right: -3vw;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.6);
    color: white;
}

#home-top-sellingpoint {
    display: grid;
    justify-content: center;
}

#home-top-sptext {
    color: rgb(250, 164, 11);
    font-size: 2.5rem;
    max-width: 40vw;
    text-align: center;
    text-shadow: 0 3px 3px rgba(255, 255, 255, 0.6);
}

#home-top-footnote {
    display: grid;
    justify-content: center;
}

#home-top-fntext {
    color: white;
}
                
#home-top-signup-div {
    display: grid;
    justify-content: center;
}

.signup-decoration {
    display: block;
    background-color: rgb(250, 164, 11);
    opacity: 40%;
    margin: 0;
    padding: 0;
}
                    
.signup-button {
    color: rgb(69, 44, 0);
    font-weight: bold;
    text-shadow: 0 0.2px 0.2px rgba(0, 0, 0, 0.6);
    background-color: rgb(226, 226, 226);
    border: solid;
    border-radius: 16px;
    border-color: rgb(143, 48, 245);
    border-width: 4px;
    padding: 0.5vw;
    width: 10vw;
    height: 3vw;
    min-height: fit-content;
    justify-self: center;
    align-self: center;

    transition: all 0.5s ease;
}

.signup-button:hover {
    color: rgb(250, 164, 11);
    box-shadow: 0 0 20px 0 rgb(250, 164, 11);
    text-shadow: 0 0 4px 0 white;
    background-color: rgb(0, 0, 0);
    transform: scale(1.18);
}



#div1 {
    height: 1vh;
    width: 100vw;
    background: linear-gradient(
        45deg,
        purple 0%,
        black 50%,
        purple 100%
    )
    linear-gradient(
        to bottom rgba(0,0,0,0.5), transparent
    );
    background-blend-mode: overlay;
}

#section2 {
    height: 30vh;
    display: grid;
    background: inherit;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 15vw;
    padding-right: 15vw;
    gap: 5%;

    background: linear-gradient(
        225deg,
        black 0%,
        black 60%,
        purple 100%
    );
}







#section3 {
    height: 70vh;
    background: inherit;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-content: first baseline;
    padding-left: 25%;
    padding-right: 25%;
    
}

#messages-image {
    padding: 15%;
    width: fit-content;
    max-height: 50vh;
}

#features-title {
    color: rgb(250, 164, 11);
    text-align: center;
    text-shadow: 0 3px 3px rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    font-size: 2.5rem;
    max-height: fit-content;
    margin-bottom: 3vh;
    
}

#features-block {
    display: flex;
    flex-direction: column;
    padding: 10%;
    height: 80%;
}

#features-list {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    height: 80%;
}




#section4 {
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 5%;
    background: linear-gradient(
        225deg,
        black 0%,
        black 60%,
        purple 100%
    );
}

#mid-signup-title {
    color: rgb(250, 164, 11);
    text-shadow: 0 3px 3px rgba(255, 255, 255, 0.6);
    margin-bottom: 5vh;
    font-size: 2rem;
    width: 40vw;
    text-align: center;
}




#section5 {
    height: 80vh;
    display: grid;
    gap: 0;

}