* {
    margin: 0;
    padding: 0;
    background-color: #cfced7;
    font-family: Arial, Helvetica, sans-serif;
}

.heading {
    font-family: "Anton SC", sans-serif;
    text-align: center;
    margin: 20px;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    margin: 30px;
}

.latest p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

.container p {
    text-align: center;
    font-size: 20px;
}

.container h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

.latest a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    margin: 40px;
}

.headbar,
.footbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid black;
    font-size: 20px;
    font-weight: bold;
}

.footbar {
    border-top: 1px solid black;
}

footer p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: black;

}

a:hover {
    color: white;
}