@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", open-sans, sans-serif;
    font-style: normal;
    font-weight: 600;
}
.container {
    width: auto;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
nav {
    text-align: center;
    background-color: #bfc9d3;
    padding-top: 24px;
    padding-bottom: 24px;
}
nav ul li {
    display: inline;
}
header#home-header {
    padding-bottom: 10px;
    min-height: 240px;
    color: #ffffff;
    text-align: center;
    padding-top: 10px;
    font-size: 1.8rem;
    background-color: #333333;
    background-image: url(images/home-background.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
header#about-header {
    padding-bottom: 10px;
    min-height: 240px;
    color: #ffffff;
    text-align: center;
    padding-top: 10px;
    font-size: 1.8rem;
    background-color: #333333;
    background-image: url(images/about-background.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
header#portfolio-header {
    padding-bottom: 10px;
    min-height: 240px;
    color: #ffffff;
    text-align: center;
    padding-top: 10px;
    font-size: 1.8rem;
    background-color: #333333;
    background-image: url(images/portfolio-background.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
header h1 {
    margin-bottom: 0px;
}
header + main {
    padding-bottom: 20px;
}
main section:first-child    {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.8;
    font-weight: normal;
    padding-top: 20px;
    padding-bottom: 20px;
}
main section:nth-child(2) > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
section + section > div > div     {
    width: 49%;
    border: 1px solid #bfc9d3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
    padding: 10px;
    margin-bottom: 10px;
}
section + section > div > div > img {
    width: 100%;
    height: auto;
}
main section:last-child {
    margin-top: 30px;
    margin-bottom: 20px;
}
main section:last-child h2 {
    text-align: center;
}
main+footer   {
    padding-top: 40px;
    padding-bottom: 40px;
    color: #ffffff;
    text-align: center;
    background-color: #384452;
    background-image: url(images/web-design.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 85%;
}
