@font-face {
    font-family: 'Kingred';
    src: url('fonts/Kingred.woff2') format('woff2'),
         url('fonts/Kingred.woff') format('woff)');
         font-weight: normal;
         font-size: normal;
}


html, body {
    min-height: 100vh;
    overflow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Kingred', Arial, sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #E6E6FA, #D8BFD8, #B0A7D8, #D8BFD8, #E6E6FA);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    border: none;
}

#organization {
    font-family: 'Kingred';
    font-size: 1.5rem;
    padding: 1rem;
}

.no-border {
    border: none;
    box-shadow: none;
    background: transparent;
}

.centered-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 2rem;
    margin: 1rem;
}

#myVideo {
    max-width: 100%;
    height: auto;
    display: block;
  }

#logo {
    max-width: 90%;
    min-height: 10px;
    width: auto;
    height: auto;
    max-height: 125px;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#muteButton {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
  }

  
  
  #muteButton::before {
    content: '\f026'; /* Unicode for Font Awesome volume icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 20px;
  }
  
  #muteButton.muted::before {
    content: '\f6a9'; /* Unicode for Font Awesome muted icon */
  }
  