body{
    font-family: 'Times New Roman', Times, serif;
  text-align: center;
  height: 70vh; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h3 {
    text-align:center;
}
h1, h3, p {
    margin: 0.3em;
  }
p{
    padding-bottom: 1em;
}
header {
    display: flex;
    justify-content: center;  
    align-items: center;     
    gap: 1rem;               
    text-align: center;
}
main{
    margin: auto;
}
nav {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
  }
  
a {
    color: rgb(0, 53, 225);
    padding-top: 0.2em;
}
a:visited{
    color: rgb(18, 0, 133);
}
a:hover{
    color: rgb(255, 143, 22);
}
a:active{
    color: rgb(255, 224, 45);
}

#albums {
    padding: 0 15%;
    padding-right: 20%;
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    grid-template-areas:
        "img aside"
        "img aside"
        "img aside"
        "img aside"
        "img aside";
    }
    
#albums p{
    margin-top: auto;
    margin-bottom: auto;
}

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat977.ani), url(https://cur.cursors-4u.net/nature/nat-10/nat977.gif), auto !important;} /* End https://www.cursors-4u.com */

#albumIMGs img:hover{
    transform: scale(1.1);
}
#albumIMGs img{
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px; 
  box-sizing: border-box;
}

.iframeContainer {
  position: relative;
  background: rgb(217, 231, 242);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  box-sizing: border-box;
}

.iframeContainer img {
  width: 100%;
  height: auto;
  display: block;
}

.toolbarLB {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 10;
}

.closeLB {
  font-size: 32px;
  font-weight: bold;
  color: rgb(0, 102, 255);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border-radius: 6px;
}

.closeLB:hover {
  color: darkblue;
}

.responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

area {
  cursor: pointer;
}
