/* transition and animation */


.fade-in {
    opacity: 0;
    transition: opacity 2s ease-in-out;
  }
  
  .fade-in.show {
    opacity: 1;
  }










  .hidden {
    display: none;
  }
  
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
  }
  
  .miniWindow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 900px;
    height: 70vh;
    padding: 20px;
    background-color: #000;
    opacity: 1;
    color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 10000;
  }
  
  .closeButton {
    background-color: #000;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #f9f9f9;
  }
  
  .closeButton:hover {
    color: #ff0000;
  }
  




  /*nav bar */

.navbar {

  
    background-color: black;
}

.tags {
    display: flex;
    align-items: center;
    justify-content: center;
}




.tags:hover {

   
    font-size: 1.5rem;
 

}

.hidden-nav {
    visibility: hidden;
    width: 65%;
}






/*  body */

.body{
    background-color:  #0c0c0c ;
    
}

.card-bg {

    color: white;
    background-color: rgba(255, 255, 255, 0.073);
}

.btn {
    color: white;
    border-color: white;
}

.btn:hover {

    color: black;
    background-color: white;
}


h5 {

  font-size: 1rem;
  font-weight: 500;
}








/*footer */





footer {

    position: relative;
    bottom: 0;
    height: 3rem;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-logo {

    color: white;
    font-size: 1.5rem;

}


.logo-tag {
    color: white;
    text-decoration: none;
}

.logo-tag:hover {

    font-size: 2rem;

}