@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

header {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    background-color: #000;
    color: #ffffff;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .site-title {
    font-size: 1.5rem;
    font-weight:600;
  }
  
  .menu-icon {
    font-size: 1.8rem;
    cursor: pointer;
    display: block; /* va fi mereu vizibil */
  }
  
  nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50%;
    background-color: #111;
    padding: 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
  }
  
  nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  nav a:hover {
    background-color: #ffffff;
    color: #000;
    padding-left: 0.5rem;
    transition: all 0.3s ease;
  }

  .close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  
  body {
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
  }
  
  video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  #mesaj {
    visibility: hidden;
    transition: visibility 0s, opacity 0.5s ease-in-out;
    opacity: 0;
    text-align: justify;
    margin: 10px;

  }
  
  #mesaj.vizibil {
    visibility: visible;
    opacity: 1;
  }
  
  #negru{
    background-color: #111;
    color:#ffffff;
  }

  #alb{
    background-color: #ffffff;
    color: #111;
  }

  #micTitlu{
    text-align: center;
  }

  #evanghelia{
    text-align: justify;
  }
  .alb, .negru{
    text-align: justify;
  }