.products_container{
    margin:0px;
    padding:0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 89vh;
}

h1 {
   position:relative;
   top:47px;
    font-size: 2rem;
    border-radius: 2rem;
    background-color: black;
    color: #bc7437;
    padding:10px;
    border:20px white solid;


}
.about_container {
    padding-top:30px;
    border-top-left-radius: 30px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:20px;
    padding:20px;
    width: max(60vw 300px);
    min-height: 60vh;
    background-color: white;
    border-radius:1rem;
}



.image_container {
    margin:10px;
    border-radius:1rem;
    height: 400px;
    width: 400px;
    background-image: url("images/about_image.jpeg");
    background-position: center;
    background-size: cover;

}

.text_container {
    text-indent: 2rem;
    margin:10px;
    font-size: 1rem;
    border-radius:1rem;
    display: block;
    width: 400px;
    height: 400px;
    overflow: auto;
    padding:20px;
    border:2px solid #bc7437

}
.abbtn {
    display: none;
    border:3px solid white;
    width: 150px;
}
.abbtn:hover {
    border:2px solid white;
}
.abbtn > a {
    text-decoration: none;
    color:black;
}


@media (max-width:450px) {
    .products_container {
        width: 100vw;
        margin:0px;
        padding:0px;
    }
    .about_container{
        padding:2px;
        width: 90vw;
    }
    .about_container * {
        width: 90vw;
    }
    .text_container {
    height:auto;
    width: 85vw;
    margin: 2px;
    background: white;
    padding: 1.2em;
    border: 2px solid #b87333;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
    overflow: visible;
}
.text_container * {
    width: 75vw;
}
}