
body {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-auto-flow: row;
    max-width: 1600px;
    width: 100%;
    justify-items: center;
}

.grid .info {
    padding: 40px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.info h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 32px;
}

.info p {
    font-size: 20px;
    margin-bottom: 16px;
}

.info .downloads {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
    max-width: 500px;
    margin-top: 20px;
}

.downloads img {
    height: 70px;
    padding: 10px;
}

/*.downloads a:first-of-type img {*/
/*    height: 40px;*/
/*}*/

.grid > img {
    margin: 40px;
}

.icon {
    border-radius: 20%;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}
