body{background-color:#6a1a21;}

.table {
    margin: 20px auto;
    width: 380px;
    border-collapse: collapse;
    background-color: #1a6962;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}



.table th {
    background-color: #1a6962;
    color: white;
    font-weight: bold;

    padding: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.table td {

    padding: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
    color:white;
}

.table tr:hover {
    background-color: #0a58ca;
    transition: background-color 0.3s ease;
}
.info span:nth-child(1) {
    animation-delay: 0.3s;
}

.info span:nth-child(2) {
    animation-delay: 1.5s;
}

.info span:nth-child(3) {
    animation-delay: 2.5s;
}

.info span:nth-child(4) {
    animation-delay:3.5s;
}

.info span:nth-child(5) {
    animation-delay:4.5s;
}

.info span:nth-child(6) {
    animation-delay: 5.5s;
}

.info span:nth-child(7) {
    animation-delay:6.5s;
}

.info span:nth-child(8) {
    animation-delay:7.5s;
}

.info span:nth-child(9) {
    animation-delay:8.5s;
}

.info span:nth-child(10) {
    animation-delay: 9.5s;
}
.info span:nth-child(11) {
    animation-delay:10.5s;
}

.info{
    font-size: 30px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    text-align: left;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background-color: #1a6962;
    display: flex;
    flex-direction: column;
}

.info span {
    opacity: 0;
    transform: translateX(-20px);
    animation: reveal 1s forwards;
    display: inline-block;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(5PX);
    }
}
