body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
    position: relative;
    flex-direction: column;
}

h1 , h2 , h3 {
    margin: 0;
    padding: 0;
    color: #2374b2;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
th{
    color: #2374b2;
}

video {
    width: 800px;
    height: auto;
    max-width: 100%;
}

.header {
    background-color: white;
    color: #58a3dc;
    padding: 1px;
    text-align: center;
    margin-bottom: 40px;
}

.names {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.names span {
    margin: 5px;
}

.footer {
    background-color: #2f3e9e;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #58a3dc;
    text-decoration: none;
    font-weight: bold;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: 58a3dc;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
  }
  
  
  
  .title {
    background-color: #d4d4e7;
    color: 58a3dc;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
  }
  
  .title:hover {
    transform: scale(1.1);
  }

.image-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #ccc;
}