body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 2;
    margin: 40px;
    padding: 0;
    background-color: #232323;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 80px;
    background-color: #303030;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    animation: slideInFromTop 1s;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    animation: scaleIn 2s;
}

h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #d7d7d7;
    font-size: 2rem;
}

h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #aeaeae;
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: #9b9b9b;
}

a {
    color: #4ca1fc;
    text-decoration: none;
    transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

a:hover {
    color: #4ca1fc;
    transform: scale(1.15);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #303030;
    overflow: hidden;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #444;
    color: #9b9b9b; 
}

th {
    background-color: #78a5f0; 
    color: #333;
}

.hanging-indent {
    padding-left: 35px;
    text-indent: -35px;
}

blockquote {
    border-left: 3px solid #ccc;
    padding-left: 15px;
    margin: 0 0 20px;
    color: #666;
}

b {
    color: #ffffff;
}
