* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

a,
a:hover,
a:visited,
a:active {
    color: whitesmoke;
    text-decoration: none;
}
/* Header Section */
.page_title {
    background-color: #383a3d;
    color: whitesmoke;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

/* Banner Section */

.banner_image {
    width: 100%;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
  }

.image-container img {
    display: block;
    width: 100%;
    height: auto;
  }

.overlay-text {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    padding: 10px 20px;
    font-size: 29px; 
    text-align: center;
}

/* Feeders */

.section_feeders {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.feeders {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_title {
    font-size: 24px;
    font-weight: bold;
}

.feeders_image {
    width: 250px;
}

.weight {
    text-align: center;
}

.pricing {
    text-align: right;
}

/* Mailchimp */

.mailchimp {
    display: flex;
    justify-content: center;
}

/* Footer */

.footer {
    display: flex;
    justify-content: space-evenly;
    background-color: #383a3d;
    color: whitesmoke;
    padding: 20px;
}

.footer_column {
    padding: 10px;
    width: 30%
}

.copyright {
    padding: 15px;
    text-align: center;
}