/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    font-family: Helvetica;
    scroll-behavior: smooth;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

.visible-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    color: rgb(4, 73, 40);
    padding: 1rem;
    margin-left: 15rem;
    font-size: 1.5rem;
}

.visible-hidden:focus {
    clip: auto;
    height: auto;
    overflow: auto;
    position: absolute;
    width: auto;
}

header {
    display: flex;
    flex-direction: column;
    text-align: center;

}

header p {
    margin: 0;

}

.other-font,
h1,
h2,
h3,
h4,
h5 {
    font-family: Verdana;
}

nav ul {
    list-style-type: none;
    padding: 0;

}

nav ul li,
header p {
    font-size: 1.5rem;
}

h1,
h2,
h3,
h4,
nav ul li {
    color: rgb(4, 73, 40);
}



@media(min-width:40rem) {

    /*nav ul li {
        display: flex;
        flex-direction: row;
    }*/
    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0;
    }
}

@media (max-width:35rem) {
    h1 {
        font-size: 1.5rem;
    }

    ;

    h2 {
        font-size: 1.1rem;
    }

    .ordertitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

main {
    padding: 1.5rem;
    /* didn't work: display: grid;
    place-content: center;
*/
}

@media (min-width:35rem) {
    main {
        padding: 8rem;
        /* didn't work: display: grid;
    place-content: center;
*/
    }
}

.green {
    color: rgb(4, 73, 40);
}

.youtube-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ordertitle {
    text-align: center;

}

.paypal-wrapper {
    padding: 2rem;
    margin-inline: auto;

}


.grid {
    display: grid;

}

.grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




@media (min-width:35rem) {

    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .grid img {
        aspect-ratio: 16/9;
    }
}

.buytoday,
.testimonials,
.disclaimer,
footer {
    padding: 1.5rem;
}

.item-description {
    font-size: 1.5rem;
}

.first-test {
    /*margin-top: 2rem;*/
}

.input-label {
    font-size: 1rem;
    line-height: 1.5;
}

.plant {
    place-content: center;


}

audio {
    margin-top: 1rem;

}