body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    margin: 0px;
}

h1 {
    font-size: 1.5em;
}

a {
    color:#000;
    text-transform: uppercase;
}

a:hover {
    color: #7f7f7f;
}

.image {
    margin-bottom: 50px;
    display: block;
    text-align: center;
}

.image img {
    width: 300px;
}

#icon {
    text-align: center;
}

#container {
    display: inline-block;
    width: 100%;
}

#content {
    width: 50%;
    margin: 50px auto;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid p {
    text-align: left;
}

.bold {
    font-weight: 700;
}

@media (max-width: 1000px) {
    body {
        width: 100%;
    }
    
    #content {
        display: block;
        width: 100%;
    }

    #text {
        font-size: 2em;
        padding: 30px;
    }

    .image {
        margin-bottom: 20px;
        display: block;
        text-align: center;
    }

    .image img {
        width: 400px;
    }
}