* {
     box-sizing: border-box;
     padding: 0;
     margin: 0;
}
body {
     min-height:  100vh;
     flex-direction: column;
}
.flex {
     display: flex;
     justify-content: center;
     align-items: center;
}
.grid {
     display: grid;
     grid-template-columns: 1fr;
     grid-template-rows: repeat(3/ 1fr);
}
.container {
     flex-direction: column;
     background-color: rgb(238, 238, 238);
     margin: 1%;
     border-radius: 2%;
}
.heading {
     margin: 2% 0% 1% 0%;
     flex-direction: column;
     gap: 3%;

}
.main {
     min-height: 100vh;
     flex-direction: column;
}
#img-div {
     flex-direction: column;
     margin: 2%;
     background-color: #fff;
}
#image {
     margin-bottom: 1%;
}
#img-caption {
     margin-bottom: 2%;
}
.conatins {
     flex-direction: column;
     margin: 2% 20%;
     
}
.sub_title {
     margin-bottom: 5%;

     font-size: 1.3rem;
}
.list {
     flex-direction: column;
     align-items: flex-start;

     margin: 0% 19%;
     font-size: 1.1rem;
}
.list_item {
     margin: 2% 0%;
     line-height: 30px;
     color: #5f5d5d;
}
.bold {
     font-weight: 900;
     color: #000 !important;
}
.second {
     width: 50%;
     flex-direction: column;
     margin: 0 auto;
     font-size: 1.3rem;
     margin-bottom: 4%;
}
footer {
     margin-bottom: 2%;
     
}

#tribute-link:hover {
     text-decoration: none;
     color: black;
     margin-bottom: 2%;
     border-bottom: 1px solid black;
     transition: all 0.5s ease-in-out;
}
@media (max-width : 500px) {
     #image {
          width: 90%;
     }
     #img-caption {
          font-size: 0.6rem;
          text-align: center;
     }
     .sub_title {
          font-size: 0.9rem;
     }
     .conatins {
          margin: 2% 9%;
         
     }
     .list {
          font-size: 0.8rem ;
          margin: 0% 10%;
     }
     .list_item {
          line-height: 20px;
     }
     .second {
          width: 84%;
          
         
          font-size: 1rem;
          
      }
      .sub-title_4 {
          font-size: 0.8rem;
          text-align: center;
      }
}