  /* HOMEPAGE */

  
  .container {
    padding: 20px;
    max-width: 800px;
  }
  

  
  .letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    
  }
  
  .letter-box {
    position: relative;
    cursor: pointer;
  }
  
  .letter {
    font-size: 6rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
  }
  
  .letter-box:hover .letter {
    color: #FFD166;
  }
  
  .description {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: #222;
    color: #FFD166;
    padding: 10px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
  }
  
  .letter-box:hover .description {
    opacity: 1;
  }

  .corner-text {
    position: fixed;
    bottom: 100px;
    right: 40px;
    font-size: 0.95rem;
    color: #ccc;
    text-align: right;
    text-decoration: none;
    max-width: 250px;
    line-height: 1.4;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .subtitle{
    font-family: "learning-curve", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
}

  




  
  
  .corner-text:hover .highlight {
    color: #FFD166; 
  }
  
  .corner-text:hover {
    color: #fff;
  }
  
  .content{
    font-size: 0.95rem;
  }
  
   /* CONTENT PAGE */

   
/* links */
a:link {
  text-decoration: none;
}








 /* FOOTER */
  footer {
    font-family: 'Helvetica Neue', sans-serif;
    margin-top: 50px;
    font-size: 0.75rem;
    color: #666;
    position: fixed;
    left: 0;
    bottom: 10px;
    text-align: center;
    width: 100%;

  }

 
  
  

  