@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

* {
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    background-color: #fff;
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    margin: 0 auto;
    padding: 1rem;
    width: 1000px;
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.logo i {
    font-size: 3rem;
    margin-right: 1rem;
}

time {
    font-weight: bold;
}

nav {
    border-top: 2px solid #c4c4c4;
    border-bottom: 2px solid #c4c4c4;
    margin: 1rem 0;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

nav li {
    margin: 0.5rem 0;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

nav a:hover {
    text-decoration: underline;
    color: #0077cc;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    padding: 1.5rem;
    flex: 1;
}

.col:not(:last-child) {
    border-right: 2px solid #c4c4c4;
}

main p {
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin: 1rem 0;
}

main h3 {
    margin-top: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

main h3:hover {
    color: #0077cc;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col:not(:last-child) {
        border-right: none;
    }
}
