@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
body {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.container {
    max-width: 1200px;
    margin-inline: auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 5px solid black;
    border-bottom: 1px solid black;
}
.header__main {
    display: flex;
    align-items: center;
    max-width: 300px;
}
.logo {
    max-width: 100px;
}
.downloads {
    margin-top: 50px;
    background-color: lightgray;
    text-align: center;
    padding-block: 50px;
}
.downloads__heading {
    font-size: 28px;
    margin-bottom: 30px;
}
.cards__wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}
.download__cart {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    text-align: center;
    font-size: 18px;
    padding: 18px;
    background-color: white;
    border-radius: 1.5em;
}
.images__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.cart__image {
    max-width: 80px;
    object-fit: cover;
}
.card__heading {
    font-size: 24px;
}
.about {
    text-align: center;
    max-width: 900px;
    margin-top: 24px;
}