#wrapper {
    padding-top: 130px;
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 150px;
    text-align: center;
}

nav {
    background-color: #1a1a1a;
}

.privacyButton {
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-radius: 4px;
}

.privacyButton p {
    color: white;
    display: inline;

}

h2 {
    font-size: 30px;
}

#wrapper h1 {
    font-size: 50px;
}

p {
    color: #1a1a1a;
}

#wrapper a {
    color: #1a1a1a;
    text-decoration: underline;
}

.products-wrapper {
    display: flex;
    margin-top: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    background-color: #eee;
    width: 370px;
    text-align: center;
    border-radius: 20px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 150px;
}

.product-icon {
    height: 30px;
    margin-right: 10px;
}

.product-info {
    height: 50px;
    width: 200px;
    margin: auto;
}

.product-header {
    display: flex;
    line-height: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.product .more-button-black {
    margin-top: 40px;
}

.product .action-button {
    transform: translateY(50%);
    margin-top: -20px;
}


@media only screen and (min-width: 900px) {
    #wrapper h1 {
        font-size: 100px;
        padding-bottom: 30px;
    }

    p {
        font-size: 20px;
    }

    #wrapper {
        padding-top: 230px;
        background-color: white;
        padding-left: 10%;
        padding-right: 10%;
        max-width: 1400px;
        margin: auto;
        padding-bottom: 150px;
    }

}