body {
    min-height: 100vh;
    overflow-x: hidden;
    background: rgb(54, 53, 53);
   
}


.header-container {

    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: none;
    align-items: center;
    background-color: lightgrey;

}


.corp-name {
    padding: 5px;
    display: flex;
    justify-content: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: xx-large;
    color: rgb(253, 144, 54);
    text-decoration: underline;
}


.buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background: rgb(54, 53, 53);
    padding: 20px;
    
}

.b1 {
    background: rgb(54, 53, 53);
   border: none;
   font-size: larger;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   cursor: pointer;
   color: rgb(253, 144, 54);
   
}


.b2 {
    background: rgb(54, 53, 53);
   border: none;
   font-size: larger;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   cursor: pointer;
   color: rgb(253, 144, 54);
}

.b3 {

    background: rgb(54, 53, 53);
   border: none;
   font-size: larger;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   cursor: pointer;
   color: rgb(253, 144, 54);
}


.b4 {

    background: rgb(54, 53, 53);
   border: none;
   font-size: larger;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   cursor: pointer;
   color: rgb(253, 144, 54);
}


.b5 {
    background: rgb(54, 53, 53);
   border: none;
   font-size: larger;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   cursor: pointer;
   color: rgb(253, 144, 54);
}



.gallery {

    position: absolute;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,300px));
    column-gap: 10px;
    background: rgb(54, 53, 53);
    padding: 10px;
    row-gap: 10px;


}


img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}