@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

.Wrapper {
    font-family: 'Raleway', sans-serif;
}

h1, h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: bold;
}

.bodySection .Wrapper p, .bodySection .Wrapper li {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 80%;
    display: block;
    margin: 2rem auto;
}

.products {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

@media(max-width: 800px) {
    .products {
        flex-direction: column;
    }
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product h3 {
    font-size: 1rem;
}

.product p.generics {
    font-size: 0.7rem;
}

.product a.button {
    background-color: lime;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
}