html {
    background-image: url("bgs/py.tile.jpg");
    padding: 50px; 
}

p {
  color: red;  
}

h1, h2, h3, b {
    color: blue;
}

a:
  color: blue;
}

a:hover {
  color: mediumspringgreen;
}

vignette {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 75px red inset;
}

sidenav {
height: 100%; 
width: 360px; 
position: fixed; 
align-content: left;
z-index: 0; 
top: 0; 
left: 0;
background-image: url(bgs/gutpink.gif);
overflow-x: hidden; 
padding-top: 20px;
border-right: 10px red 
groove;
}

a {
  padding: 6px 8px 6px 16px;
  margin: 10px;
  align-content: center;
  font-size: 25px;
  color: blue;
  background-color: yellow;
  display: block;
  width: 100px;
}

main {
margin-left: 350px; 
padding: 0px 10px;
}

table, caption {
    background-color: yellow;
    border: 10px double red;
    width: 850px;
    height: auto;
    padding: 20px;
}


tr, td {
    text-align: left;
    color: red;
    border: double;
    padding: 15px;
}

/*modalbslol*/
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 15px;

}

.gallery-item {
  position: relative;
  width: calc(100% - 20px);
  height: auto;
  margin: 10px;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.1);
}

#myImg {
  transition: 0.3s;
}

#myImg: hover {opacity: 0.7;}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.modal-content {
  position: relative;
  width: auto;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  animation: zoomIn 0.5s;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: red;
  font-size: 95px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}