/* 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: #202024;
    color: #fff;
    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 .logo {
    padding: 10px 0;
}

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

nav li {
    margin-right: 20px;
}

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

.content {
    margin-top: 70px;
}

/* 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 p {
    font-size: 20px;
    color: #555;
}

@keyframes fadeIn2 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Move it back to its original position */
    }
}

.second {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn2 1s ease-in-out forwards;
}

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

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

.updatebox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    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;
}

.updatebox h2 {
    margin: 8px 0 10px;
    color: #333;
}

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

.update-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

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