.body-text {
margin-left: 150px;
font-size: 10px;
}

.p1 {
  display: block;
  width:60%;
  padding:2px;
  margin-left:310px;
  justify-content:center;
  position:relative;
  border-radius: 8px;
    background: rgba(12, 40, 40,.9);
  
}

.sidenav {
  height: 50%;
  width: 150px;
  position: absolute;
  z-index: 0;
  background: rgba(12, 40, 40,.7);
      border: 2px solid white;
        opacity: 1;
        border-radius: 8px;
        color: #123456;
        padding: 5px;
  top: 1;
  left: 15px;
  margin-left:170px;
  overflow-x: hidden;
  padding-top: 2px;
  
}
.sidenav a, .dropdown-btn {
  padding: 16px 8px 6px 16px;
  text-decoration: none;
  font-size: 13px;
  color: #111111;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #c1f8f3;
}
/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 14px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}
/* Style the "active" element to highlight the current page */
.sidenav .active {
  background-color: #2196F3;
  color: #123456;
}
/* Style the search box inside the navigation bar */
.sidenav input[type=text] {
  float: left;
  padding: 4px;
  border: 1px;
  margin: 4px 8px 4px 16px;
  font-size: 14px;
}

/* link customizing */
a:link {
  color: white;
}
a:visited {
  color: #ffc0cb;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #a6626e;
  background-color: rgba(255, 244, 233, .7);
  text-decoration: underline;
}

p{font-family: monospace;}
.button {
        background-color: #77BFC7;
        opacity: 1;
        border: 2px solid black;
        border-radius: 8px;
        color: #123456;
        padding: 5px;
      }
      
/* ======================================
Responsive Image gallery Style rules
======================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "monospace"
}

.container {
  padding: 40px 5%;
  
}

.heading-text {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.heading-text span {
  font-weight: 100;
}

/* Responsive image gallery rules begin*/

.image-gallery {
  /* Mobile first */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-gallery .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-item img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .image-gallery {
    flex-direction: row;
  }
}

/* overlay styles */

.image-item {
  position: relative;
  cursor: pointer;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.image-item:hover .overlay {
  transform: scale(1);
}