@font-face {
    font-family: 'Comic Mono';
    src: url('ComicMono.ttf');
}

body {
    background-color: #f1f0ef;
    font-family: 'Comic Mono', monospace;

/* INDEX */
 summary {
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5em 0;
}
 
 
 
 nav ul {
	 position: absolute; 
	 font-size: 1.1em;
  list-style: none;
  padding: 0;
  margin: 0;
}
 nav a {
	
  text-decoration: none;
  color: #0077cc;
  display: block;
  padding: 4px 0;
}
 nav a:hover {
  text-decoration: underline;
}

.future {
  font-size: 4rem;      
  font-weight: 900;   
  text-align: center;   
  font-family: Arial, sans-serif;
}


div.globe {

text-align: center;
position:absolute;
width:256px;
height:256px;
top:50%;
left:50%;
margin: -128px 0 0 -128px;

}


}

footer {
    position: fixed;
    bottom: 0;
    color: gray;
}


details[open] nav {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MUSIC PAGE */ 

.page-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-top: 2rem;
}

.video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-block video {
  max-width: 650px;
  max-height: 350px;
}

.video-title {
  font-family: 'Comic Mono', monospace;
  font-weight: bold;
  margin-top: 0.5rem;
}
.video-block {
  border: 1px solid #ccc;
  padding: 1rem;
  transition: transform 0.3s ease;
}
.video-block:hover {
  transform: scale(1.02);
}

/* photos */ 

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.photo-block {
  border: 1px solid #ccc;
  padding: 0.5rem;
  background-color: white;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.photo-block:hover {
  transform: scale(1.02);
}

.photo-block img {
  width: 100%;
  height: auto;
  display: block;
}