* {
    box-sizing: border-box;
}
/* Center website */
.main {
    margin: auto;
    text-align: center;
}

/*h1 {*/
/*    font-size: 50px;*/
/*    word-break: break-all;*/
/*}*/

/* Add padding BETWEEN each column */
.row,
.row > .column {
    padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;

    display: none; /* Hide all elements by default */
}

/* Clear floats after rows */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    width: 100%;
    height: 100%;
    padding: 10px;
}
.gallery_pics{
    width: 100%;
    height: 600px;
    object-fit: contain;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: darkgray;
    cursor: pointer;
    font-size: 30px;
}
/* Style the active class, and buttons on mouse-over */
.active, .btn:hover {
    background-color: #666;
    color: white;
}

.p-description{
    margin: auto;
}

.mystyle {
    width: 100%;
    padding: 25px;
    background-color: coral;
    color: white;
    font-size: 25px;
    box-sizing: border-box;
    margin-top: 15px;
}

.newone {
    width: 50px;
    padding: 10px;
    background-color: green;
    color: white;
    margin-top: 15px;
}

@media only screen and (max-width: 500px) {
    .column {
        width: 100%;
    }
    .gallery_pics{
        height: auto;
    }
    .btn {
        font-size: 0.5em;
    }
}

@media only screen and (min-width: 501px) and (max-width: 1366px){
    .column {
        width: 100%;
    }
    .gallery_pics{
        height: 100%;
    }
}