@font-face {
  font-family: 'MyCustomFont';
  src: url('fonts/Magilio.ttf') format('truetype');
}

h1 {
  font-size: 50px; /* Slightly larger than the default 32px */
}


body {
  background-color: black;
  color: white;
  font-family: 'MyCustomFont', sans-serif;
  margin: 0;
  padding: 10px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
}

/* Container to limit max width on desktop but allow full width on mobile */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
}

table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%; /* Optional: or set a fixed width like 90% */
  max-width: 100%;
}

td {
  padding: 8px 12px;
  text-align: center; /* Optional, for better formatting */
  border-bottom: 1px solid #444;
  color: white;
}


nav {
  background-color: #222;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}

nav a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

hr {
  border: 1px solid #444;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
}

.icon-link img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.icon-link img:hover {
  transform: scale(1.2);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.flex-container {
  display: flex;
  flex-direction: column; /* or row */
  gap: 20px;
}
