html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: Helvetica,Arial,sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
    background-color: #ffffff;
}

.container {
    width: 100vw;
}

#header {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

#header .logo {
    width: 100px;
    height: 100px;
}

#content {
    padding: 50px 75px;

}
#content img {
    width: 400px;
}

.grid {
    margin: 0 auto;
}

.grid-item {
    margin-bottom: 40px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    padding: 10px 0;
}
/* Nav */
nav {
    display: block;
    position: absolute;
    right: 200px;
    top: 75px;
}
nav li a {
    color: #000000;
}


/* About */
.about-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: calc(100vh - 240px);
    padding-top: 0px !important;
}
.about-title {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-title h1 {
    font-size: 30px;
}

.about-content .text {
    width: 40vw;
    padding-right: 100px;
}
.about-content .text p {
    font-size: 16px;
    line-height: 23px;
}
.break {
    flex-basis: 100%;
    height: 0;
  }
  .about-content .img img {
    width: 500px !important;
  }
@media only screen and (max-width: 600px) {

    .grid {
        max-width: 100%;
        width: 100vw !important;
    }

    #content {
        padding: 50px 5px;
    }

    #content img {
        width: 100%;
    }

    /* Nav */

    nav {
        right: 60px;
    }

    /* About */
    .about-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-content .text {
        width: 100%;
        padding: 10px;
        margin-bottom: 30px;
    }

    .about-content {
        height: 100%;
    }

    .about-content .img img {
        width: 100% !important;
      }
    .about-content .img {
        padding: 0 10px;
      }

}