
.stacking{ display: flex;
    flex-direction: column;
    } /* Ensuring that all my sections stack on top of one another without any gaps */

a{
    cursor: pointer;
}

h2, p, figcaption, li, form, table{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
}

.banner-main{ max-width: 100%;	
	min-height: 100px;
	display: flex;
    flex-wrap: wrap;
    background-image: linear-gradient(to right, #90300d, #295e29 );
    justify-content: center;
    align-items: center;
}

 /* Media query for small screens */
 @media (max-width: 600px) {
    .banner-main {
        height: 200px; 
    }
}

.banner-items {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    align-items: center;
    width: 80%; 
    padding: 0;
    margin: 0;
    list-style-type: none; 
}

 /* Media query for small screens */
 @media (max-width: 600px) {
    .banner-items {
        flex-direction: column; 
    }
}

.process-banner {
    max-width: 100%;	
	min-height: 250px;
	display: flex;
    flex-wrap: wrap;
    background-image: linear-gradient(to right, #90300d, #295e29 );
    justify-content: center;
    align-items: center;
}

/* Media query for small screens */
@media (max-width: 600px) {
    .process-banner{
        height: 600px; 
    }
}

.blank-section{
    background-color: antiquewhite; 
    width: 100%; 
    height: 200px;
}

    @media (max-width: 600px) {
        .blank-section{
            display: none;
        }
    }

.newsletter{
    display: flex; 
}

/* Media query for small screens */
@media (max-width: 600px) {
    .newsletter{
        flex-wrap: wrap; 
    }
}

/* Media query for small screens */
@media (max-width: 600px) {
    .form{
        width: 200px; 
    }
}

textarea {
    width: 250px;
    height: 250px;
    resize: vertical;
}

textarea, input{
    border: 1px solid #000000;
    
}

textarea:focus, 
input:focus{
    outline: 1px solid #044e26;
}
   
input[type=text], [type=email] {
    padding: 10px;
    cursor: pointer;
   
}

.footer{
    max-width: 100%;
    background-image: linear-gradient(to right, #295e29, #90300d);
    height: 400px;
    margin: 0px; 
    padding: 0px;
}
    
/* Media query for small screens */
@media (max-width: 600px) {
    .footer{
        height: 2000px; 
    }
}

.book-p{
    margin-left: 285px; 
    margin-bottom: 50px;
}

/* Media query for small screens */
@media (max-width: 600px) {
    .book-p{
        margin-left: 50px; 
    }
}

.form-book{
    display: flex; 
    flex-wrap: wrap; 
    flex-direction: row; 
    gap: 150px;
    margin-top: 20px;
}

/* Media query for small screens */
@media (max-width: 600px) {
    .form-book{
        gap: 30px; 
    }
}
