.container {
    grid-template-columns: 20% 81%;
    
}
.about-main {
    margin: 0px 8px 0px 8px;
    background: var(--container-img);
}
.about-main p {
    padding:7px;
}
.about-header {
    padding:0;
    margin:0;
    color: white;
    background-color: var(--header-color);
    text-align: center;
}
.art-image {
    margin-top: 4px;
    margin-bottom: -4px;
    width: 162px;
    border: 2px solid var(--header-color);
    filter: grayscale(25%);
}
.art-image:hover {
    filter: grayscale(0%);
}
.about-r {
    overflow: hidden;
}
.about-r img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}
.about-name {
    background: var(--container-img);
    margin-top: 4px;
}
.about-name p {
    padding: 0px 4px 0px 4px;
    text-align: center;
}
.about-likes {
    margin-top: 4px;
    background-image: url(Images/paper.png);
    background-size: 200px;
}
.about-likes li {
    list-style-position: inside;
    padding: 0px 4px 0px 4px;
}
.about-likes ul {
    margin:0;
    padding: 0px 0px 4px 0px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.photos-content {
    padding: 6px 12px;
}
@media screen and (max-width: 768px) {
    .about-main {
        margin: 4px 0;
    }
    .art-image {
        width: 49%
    }
}