﻿body {
    bgcolor =#F5FFFA;
    font-size: 150%;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.center-img
display: inline-block;
}
.center-txt {
    display: inline-block;
}

#wrapper02 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img {
    float: left;
    width: 100px;
    height: 100px;
    background: #F5FFFA;
}

.header h1 {
    position: relative;
    top: 18px;
    left: 10px;
}

table {
    font-family: arial, sans-serif;
    font-size: 110%;
    border-collapse: collapse;
    width: 90%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

.blinking-text {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        color: red;
    }

    50% {
        color: transparent;
    }

    100% {
        color: red;
    }
}