body {
    background-color: #F0F8FF;
    /* AliceBlue */
    color: #333333;
    font-family: 'MS PGothic', 'Osaka', sans-serif;
    margin: 20px;
    line-height: 1.6;
    text-align: center;
}

.container {
    width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 2px solid #000080;
    /* Navy */
    padding: 15px;
    box-shadow: 5px 5px #C0C0C0;
    /* Silver */
    text-align: left;
}

h1 {
    color: #800000;
    /* Maroon */
    font-size: 28px;
    border-bottom: 3px double #FF0000;
    /* Red */
    padding-bottom: 5px;
    margin-top: 0;
    text-align: center;
}

h2 {
    color: #000080;
    /* Navy */
    font-size: 22px;
    border-left: 5px solid #0000FF;
    /* Blue */
    padding-left: 10px;
    margin-top: 25px;
}

h3 {
    color: #006400;
    /* DarkGreen */
    font-size: 18px;
    margin-top: 20px;
}

p {
    margin-bottom: 10px;
}

a {
    color: #0000FF;
    text-decoration: underline;
}

a:hover {
    color: #FF00FF;
    /* Magenta */
    text-decoration: none;
}

.section {
    border: 1px dashed #808080;
    /* Gray */
    padding: 10px;
    margin-bottom: 15px;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.marquee {
    width: 100%;
    overflow: hidden;
    background-color: #FFFFE0;
    /* LightYellow */
    border: 1px solid #FFD700;
    /* Gold */
    padding: 5px 0;
    margin-bottom: 15px;
}

.small-text {
    font-size: 12px;
    color: #696969;
    /* DimGray */
    text-align: center;
    margin-top: 30px;
}

.img-center {
    text-align: center;
    margin: 15px 0;
}

.img-center img {
    border: 3px solid #FF69B4;
    /* HotPink */
}

ul {
    list-style-type: '★ ';
    padding-left: 25px;
}

li {
    margin-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: #F8F8FF;
    /* GhostWhite */
}

th,
td {
    border: 1px solid #A9A9A9;
    /* DarkGray */
    padding: 8px;
    text-align: left;
    font-size: 14px;
}

th {
    background-color: #ADD8E6;
    /* LightBlue */
    color: #00008B;
    /* DarkBlue */
}

strong {
    color: #ff87d1
}