html {
    font-family: "Quicksand", sans-serif;
    background-color: rgb(134, 244, 134);
    -webkit-text-size-adjust: 100%;
}

/* Prompt + Header ============================================== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 0rem;
    padding: 0rem;
    margin-bottom: 1.5rem;
}

header h1, header p {
    margin: 0;
}

header h1 {
    font-size: xx-large;
    color: black;
}

header p {
    margin-top: 1rem;
    font-size: 20px;
}

#prompt {
    min-height: 30svh;
    display: flex;
    justify-content: center;
}

#prompt form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    text-align: center;
}

#prompt p {
    margin-bottom: 0.5rem;
}

textarea {
    font-size: 16px;
    padding: 0.75rem 1rem;
    width: 70vw;
    max-width: 420px;
    resize: vertical;
    margin: 0rem;

    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.721);
    border-radius: 0.7rem;
}

button {
    height: 3rem;
    width: 12rem;
    background-color: rgb(182, 240, 182);
    color: black;
    border-radius: 2rem;
    font-size: small;

    border: 2px solid rgb(205, 254, 202);
    box-shadow: none;
    /* outline: none; */
    cursor: pointer;
}

#prompt button {
    margin-top: 1rem;
    height: 3rem;
    width: 15svh;
}

#prompt button:hover{
    border-color: rgb(110, 174, 107);
}




/* View Garden ============================================== */
#viewGarden {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

#viewGarden button {
    border-radius: 0rem;
    border: 2px solid rgb(205, 254, 202);
    box-shadow: 0 0 2px 2px rgba(134, 244, 134, 0.721);
}


#gardenCollection {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    
    margin-top:20px;
    gap: 2rem;

}

.answerCard {
    flex: 0 0 25%;
    background-color: rgb(146, 231, 147);
    border: 1px solid rgb(146, 231, 147);
    box-shadow: 0 0 2px 2px rgba(134, 244, 134, 0.721);

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 1rem;
    position: relative;
    min-height: 10vh;
}

.answerText {
    margin-bottom: 1.5rem;
}

.timestamp {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.6rem;
    color: rgba(0,0,0, 0.6);
}


/* Screen Specific ============================================== */

@media (max-width: 430px) {
    #gardenCollection {
        gap: 0.5rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;

    }

    .answerCard {
        width: 80%;
        max-width: 400px;
        height: 20vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        gap: 1rem;

    }

}

@media (min-width: 431px) {


    .answerCard {
        flex: 0 0 25%;
    }
}

