body {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto;
    max-width: 700px;
    font-family: Verdana, Geneva, sans-serif;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    vertical-align: bottom;
    height: 50px;
    margin-top: 10px;
}

header a {
    display: flex;
    text-decoration: none;
}

header #logo-area {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

header #logo-area img {
    /* filter: grayscale(100%); */
    height: 40px;
    width: auto;
}

header #logo-area h2 {
    color: rgb(90, 90, 90);
    font-weight: 600;
}

header #navigation {
    display: flex;
    align-items: center;
}

header #navigation a {
    display: flex;
    margin-left: 20px;
    margin-right: 10px;
    color: rgb(90, 90, 90);
    font-weight: 600;
    font-size: small;
}

main {
    flex: 1 0 auto;
    display: flex;
    gap: 0px;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

main img {
    height: 148px;
    width: auto;
}

main #portfolio {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

main #portfolio img {
    height: 128px;
    width: auto;
}

main #portfolio div {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    row-gap: 15px;
}

main #portfolio div p {
    text-align: center;
    font-weight: 800;
    margin: 0px;
}

main #portfolio img {
    margin: 0px;
}

main #portfolio div .download {
    height: 30px;
    width: auto;
}

main #portfolio div .coming-soon {
    height: 30px;
    width: auto;
    margin-top: 0;
}

main h2,h3,h4 {
    color: rgb(90, 90, 90);
}

main p {
    text-align: start;
    line-height: 25px;
    color: rgb(23, 23, 23);
    /* border: 1px solid red; */
}

main a img {
    margin-top: 40px;
    height: 48px;
}

footer {
    flex-shrink: 0;
    height: 100px;
    margin-top: 30px;
    font-size: small;
}

main ul {
    text-align: start;
    color: rgb(90, 90, 90);
}

main ul li {
    margin-bottom: 20px;
}

a.current {
    font-weight: 500;
}

p.bold {
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    body {
        width: 80%;
    }
    header {
        font-size: small;
    }
    header #navigation a {
        font-size: small;
        margin-left: 10px;
        margin-right: 5px;
    }
    main #portfolio {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 60px;
    }
    main img {
        height: 96px;
        width: auto;
    }
}
