/* style.css */

body {
  margin: 0;
  padding-left: 60px;
  padding-top: 50px;
  background-color: black;
  font-family: 'Ubuntu', sans-serif;
  width: 1080px;
  height: 1920px;
  overflow-y: auto;
}

h1 {
  color: white;
  font-size: 68px;
  text-align: left;
  margin-top: 100px;
}

h2 {
  color: red;
  text-align: left;
  font-size: 50px;
  margin-bottom: 2px;
  margin-top: 30px;
}

h3 {
  color: white;
  text-align: left;
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: 1px;
}

.table-container {
  width: 100%;
}

table {
  width: 1000px;
  border-collapse: collapse;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 1s ease-out forwards;
}

table:nth-of-type(2) {
  animation-delay: 0.3s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

th, td {
  padding: 7px;
  font-size: 24px;
}

th {
  text-transform: uppercase;
  color: grey;
  font-weight: bold;
  border-bottom: 1px solid rgb(173, 173, 173);
  text-align: left;
}

thead th:last-child {
  border-bottom: none;
}

td {
  color: white;
  border-bottom: 1px solid rgb(91, 91, 91);
}

td:last-child {
  padding-top: 0;
  padding-bottom: 0;
}

tbody tr:last-child td {
  border-bottom: none;
}

td:last-child {
  border-bottom: none;
}

th:nth-child(1), td:nth-child(1),
th:nth-child(6), td:nth-child(6) {
  width: 8%;
}

th:nth-child(3), td:nth-child(3),
th:nth-child(4), td:nth-child(4),
th:nth-child(5), td:nth-child(5) {
  width: 13%;
}

th:nth-child(2), td:nth-child(2) {
  width: 45%;
}

td:nth-child(3),
td:nth-child(4),
td:nth-child(5),
th:nth-child(3),
th:nth-child(4),
th:nth-child(5) {
  text-align: center;
}

#logo-container {
  margin-top: 50px;
  text-align: left;
}

#logo {
  width: 150px;  /* Set width to 100px */
  height: auto;  /* Maintain aspect ratio */
}

.white-text-container {
  color: white;  /* Apply white text to everything inside the div */
}

.white-text-list {
  color: white;
  font-size: 20px; /* Optional: You can adjust the font size as needed */
  list-style-type: none; /* Optional: Removes the default bullet points */
  padding-left: 0; /* Optional: Remove default padding */
}

.white-text-list li {
  margin-bottom: 10px; /* Optional: Adds some space between list items */
}

.white-text-list a {
  color: white;  /* Set link color to white */
  text-decoration: none; /* Optional: Remove underline from links */
}

.white-text-list a:hover {
  color: lightgray; /* Change link color on hover, can be adjusted */
  text-decoration: underline; /* Optional: Underline on hover */
}