body {
    background: black;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadein 1s;
  }
  
  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @font-face {
    font-family: 'DigitalDisco';
    src: url('fonts/DigitalDisco.ttf') format('ttf'),
    url('fonts/DigitalDisco.woff2') format('woff2');
  }
  @font-face {
    font-family: 'DigitalDiscoThin';
    src: url('fonts/DigitalDisco-Thin.ttf') format('ttf'),
    url('fonts/DigitalDisco-Thin.woff2') format('woff2');
  }
  
  h2 {
    color: #fff;
    font-family: 'Aladin', cursive;
    font-size: 25px;
    margin: 10px 0px 10px 0px;
  }
  
  h1 {
    color: #fff;
    font-family: 'DigitalDiscoThin';
    font-size: 32px;
    margin: 10px 0px 10px 0px;
  }
  p {
    text-shadow: 2px 2px 2px #000;
    font-size: x-large;
  }
  .non-selectable {
    user-select: none;  
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
  }
  .image-container {
    height: 100px; 
    display: inline-block; 
    max-width: 50%; /* Adjust width proportionally */
    object-fit: cover;
    padding:10px;
    transition: transform 0.3s ease-in-out; 
  }
  .image-container:hover {
    transform: scale(1.1); /* Apply scale transformation on hover */
  }
  
  .flex_container {
    display: flex;
  }
  .header {
    padding: 10px;
  }
  .navbar {
    color: #ccc;
    padding: 10px;
  }
  .navbar a {
    color: #ccc;
    text-decoration: none;
    margin-right: 15px;
  }
  .flex_center {
    display: flex;
    justify-content: center;
  }
  
  .flex_center a {
    margin: 0px 4px;
  }
  .emoji {
    display:inline;
  }
  .emoji {
    display:inline;
  }
  
  h3 {
    color: #ccc;
    font-family: 'Aladin', cursive;
    font-size: 20px;
    margin: 10px 0px 10px 0px;
  }
  .footer {
    color: #ccc;
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
  }