.about-button {
    position: absolute;
    top: 150px; /* Adjust the top position as needed */
    right: 10px; /* Adjust the right position as needed */
}

#aboutBtn {
    background-color: #268f74; /* Change the background color as needed */
    color: #fff; /* Change the text color as needed */
    border: none;
    padding: 3px 15px; /* Adjust padding as needed */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 2px 5px 5px rgba(20, 20, 20, 0.507);
}

#aboutBtn:hover {
    background-color: #ffffff00;
    color: #268f74;
}

/* Style for the modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Style for the close button */
.close {
  position: fixed;
  top: 30px;
  right: 80px;
  font-size: 50px;
  cursor: pointer;
  color: red; /* Add this line to set the close button color to red */
}


/* Style for the image in the modal */
.modal img {
    display: block;
    margin: 50px auto; /* Adjust the margin as needed */
    max-width: 90%;
    max-height: 90%;
}
