@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Apply Open Sans as the default font for the body */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: black;
    color: white;
    font-size: 16px;
}

header {
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}


nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
main {
    padding: 20px;
}
/* Center the container and set a max-width */
.container {
    display: flex;
    justify-content: space-around; /* Space items evenly */
    max-width: 900px;
    margin: 20px auto; /* Center the container on the page */
    padding: 1px;
}

/* Style each item */
.item {
    background-color: #000000;
    color: white;
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    width: 45%; /* Each item takes up half the container width */
}

.item h2 {
    font-size: 1em;
    margin-bottom: 10px;
}

.item p {
    font-size: 1em;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .item {
        width: 80%; /* Adjust width on small screens */
        margin-bottom: 15px;
    }
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #000000;
    color: #fff;
}
