/* Reset some default styles */
body, h1, p, ul {
    margin: 0;
    padding: 0;
}

/* Apply a background color to the body */
body {
    background-color: #f5f5f5;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Style the header */
header {
    background-color: #f5f5f5;
    color: #000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.content {
    margin-top: 75px;
}

/* Style the hero section */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.first {
    text-align: center;
    padding: 150px 0;
    animation: fadeIn 1s ease-in-out;
    align-items: center;
}

.first h1 {
    font-size: 48px;
    margin: 20px 0;
    color: #000;
}

.first a {
    text-decoration: none;
    color: #000;
}

.first p {
    font-size: 20px;
    color: #555;
}

.second {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.second h1 {
    margin: 20px 0;
    align-items: center;
    text-align: center;
    color: #000;
}

.statisticboxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.statisticbox {
    width: calc(100% / 3);
    max-width: 300px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.statisticbox h2 {
    margin: 11px 0 10px;
    color: #333;
}

.statisticbox p {
    color: #666;
    margin: 0px 0 11px;
}

@media only screen and (max-width: 768px) {
    .statisticbox {
        width: 100%;
        max-width: 300px;
    }
}

.third {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.third h1 {
    margin: 8px 0;
    align-items: center;
    text-align: center;
    color: #000;
}
/* updatelog-boxes, updatelog-box */
.updatelog-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.updatelog-box {
    width: calc(100% / 3);
    max-width: 300px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.updatelog-box h2 {
    margin: 11px 0 1px;
    color: #333;
}

.updatelog-box p {
    color: #666;
    margin: 0px 0 11px;
}

@media only screen and (max-width: 768px) {
    .updatelog-box {
        width: 100%;
        max-width: 300px;
    }
}

.fourth {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fourth h1 {
    margin: 8px 0;
    align-items: center;
    text-align: center;
    color: #000;
}

.footer {
    margin: 6px 0;
}