body{
    font-size: 2rem;
    font-family:"Varela Round", serif;
    text-align: center;
    color: #FAFAFA;
    margin:0px;
    
}
p,li{
    color: #6B7280;
    font-family:"Varela Round", serif;
}


h1{
    font-family: "REM", sans-serif;
    color: #2E2E2E;
}
h2{
    color:#2563EB;
    font-family: "REM", sans-serif;
}
h6{
    color:#7f838b;
}
nav{
    display:flex;
    width:1200px;
    font-size:3rem;
    margin:0px auto;
    padding:20px;
    justify-content:center;
    color: #bfacb2;
    text-align: center;
    

}

nav a,h5{
    padding:20px;
    color:#38BDF8;
    text-decoration: none;
}
nav a:hover{
    background: #bfacb2;
    color: #B0CFE2;
}
footer{
    display: flex;
    font-size: 2rem;
    width:1200px;
    color: #bfacb2;
    margin:0px auto;
    background: white;
    padding:20px;
    justify-content: space-between;
    font-family:sans-serif;
    text-align: center;
    
}
footer a:hover{
   color: #B0CFE2;
}
footer a{
    color: #bfacb2;
    text-decoration: none;
}

ul, ol {
    display: inline-block;
    text-align: left;
    list-style-position: inside;
    padding-left: 0;
    margin: 0 auto;
}

.centered-list{
    list-style: disc;
    list-style-position: inside;
    text-align: center;
    padding: 0;
    margin: 0;
}

.custom-hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right,  #FFFFFF, #E5E7EB, #FFFFFF);
    width: 70%;
    margin: 2rem auto;
}

.image {
   display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  filter: opacity(0.7);
  opacity: 0.8;
}

  

.image:hover {
    transform: scale(1.1);
    filter: opacity(1.2);
    opacity: 1;
}

video {
  display: block;
  margin: 0 auto;          
  max-width: 100%;      
  height: auto;            
  
}

.image-roll {
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    filter: opacity(0.7);
    opacity: 0.8;
  }
  

.image-roll:hover {
    transform: scale(1.1); 
    filter: opacity(1.2); 
    opacity: 1; 
  }

.image-row {
  display: flex;              /* places images next to each other */
  justify-content: center;    /* centers the row horizontally */
  flex-wrap: wrap;            /* allows wrapping on small screens */
  gap: 20px;                  /* space between images */
  margin-bottom: 2rem;        /* space below the image row */
}

.video-row {
  display: flex;              /* places images next to each other */
  justify-content: center;    /* centers the row horizontally */
  flex-wrap: wrap;            /* allows wrapping on small screens */
  gap: 20px;                  /* space between images */
  margin-bottom: 2rem;        /* space below the image row */
}

summary{
    color:#2563EB;
    font-size: 1.5rem;
}

