
body{
    background: radial-gradient(circle, rgb(0, 0, 0), rgb(255, 68, 0));
}
nav{
  background: rgb(0, 0, 0);
  padding: 20px;
  margin: 20px;
}

.link{
  font-size: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-left: 20px;
}

.link:hover{
  text-decoration: underline;
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
}
.lightbox:hover{
  background: black;
}

.img-container{
    width: 50%;
    display: flex;
    margin:auto;
    gap: 5px;
    align-items: center;
}
img{
    max-width: 300px;
    height: auto;
}
.lightbox{
    display: none;
    background: black;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 2em;
    text-decoration: none;
}
.lightbox:target{
    display: block;

}
.lightbox span{
    display: block;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox img{
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 105px red;
    
}
p{
    color: red;
    font-size: 1.5em;
    margin-top: 5px;
}
