/* Reset defaults */
 * {
     margin: 10;
     padding: 0;
     box-sizing: border-box;
    }                        
/* Overall formatting */
 body {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: medium;
  background: white;
      }
 h1 {
  text-align: center;
  font-size: 3.5em;
    }

    /* standard sections */
/* nav bar*/
 header {
  display:flex;
  justify-content:space-between;
  margin:10px;
  font-size:1em
        }
 #top-nav {
  position: fixed;
  top:0;
  left:0;
  right:0;
  background-color:#f0f0f0;
          }
  main {
   margin: 10px;
   padding: 20px;
   text-align: justify;
       }                        
footer {
  text-align: center;
  font-size: 0.75em;
       }

#gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #42bfb0;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ccc;
  }
       
#gdpr-banner p {
  margin: 0;
  }
       
#gdpr-accept {
  background-color: #42bfb0;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  }

       
/* self-created ids */
#description {
 margin-top: 10px;
 margin-bottom: 10px;
 text-align: center;
 font-size: 1.3em;
 font-family: inherit;
 padding: 20px;
             }
#hero {
 display: flex;
 justify-content: center;
 margin-top:60px;
      }
 #testimonial-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
                      }
#copyright {
 font-size: 10px;
           }           
#flower-list {
  background-color: #42bfb0;
  color: white;
  border: 3px solid #90bf42;
  border-radius: 10px;
  box-sizing: border-box;
  font-size:0.8em;
  text-align: center;
             }   
#fun-facts {
 font-size: 14px;
 color: #624E57;
 display: flex;
 flex-direction:column;
 padding: 10px;
 border: 3px solid #90bf42;
 border-radius: 10px;
           }
#fun-facts p {
  margin-bottom: 0px; 
             }



/* self-created classes */
.hero-image {
  width: 90%;
            }
.centered-paragraph {
  padding: 10px;
  text-align: center;
                    }     
.product {
  display: flex;
  justify-content: center;
         }
.product-image {
  height: auto;
  border: 3px solid #90bf42; 
               }            
.testimonial {
  background-color: #42bfb0;
  padding: 20px;
  color: white;
  border: 3px solid #90bf42;
  border-radius: 10px;
  box-sizing: border-box;
             }
.conclude {
  display: flex;
  justify-content: center;
  margin: 10px;
          }



/* variances for screen size */ 
/* laptop */
@media screen and (min-width: 768px) 
{
 #testimonial-section 
 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
 }
 .testimonial 
  { 
   flex: 0 0 calc(33% - 20px);  
  }
 .product-image 
   {
    width: 400px;  
   }
}
/* mobile */
@media screen and (max-width: 767px) 
{
#testimonial-section 
{
flex-direction: column;
align-items: center;
}                            
.testimonial 
{
width: 100%;
margin-bottom: 20px;}                            
.product-image 
{
width: 250px;
}
}



/* asset designs */                                                  
/* anchor design for hrefs */
a {
   text-decoration: none;
   color: inherit;
  }
a:hover {
         color: #42bfb0;
        }                          
/*button formatting */
button {
        background: #42bfb0;
        color: white;
        border: #624E57 solid 3px; 
        border-radius: 10px;
        padding: 10px;
        font: inherit;
        cursor: pointer;
        margin: 10px;
        }
.button-container {
                   text-align: center;
                  }
button:hover {
              color: inherit;
              border: #624E57 solid 3px;
              padding: 10px;
              font: inherit;
              cursor: pointer;
             }
button:hover a {
                color: black;
                font: inherit;
                cursor: pointer;
               }                       
/* table formatting */
table {
       border-collapse: separate;
       border-spacing: 6px;
      }
th {
    font-weight: bold;
    background-color: #333333;
    color: white;
    padding: 6px;
   }
td {
    background-color: #8EC769;
    padding: 6px;
   }                         
/* Lists formatting*/
ul {
    display: flex;
    flex-wrap: wrap;
    columns: 1;
   }                      
 li {
     list-style-type: none;
     padding: 10px;
    }