* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato';
}

header {
  width: 100%;
  height: 50vh;
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  background-image: url('img/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

nav {
  display: flex;
  padding: 30px;
  justify-content: space-between;
  text-transform: uppercase;
  filter: brightness(200%);
}

nav ul {
  list-style-type: none;
}

@media only screen and (max-width: 600px) {
  nav ul {
    display: none;
  }
}

nav ul li {
  display: inline-block;
  padding: 5px 20px;
}

nav a, nav a:hover, nav a:visited {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.main-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-top: -60px;
  width: 100%;
  height: 100%;
}

section {
  padding: 60px 0;
}

h2 {
  padding-bottom: 30px;
}

p {
  padding: 5px 0;
}

section h2 {
  font-size: 30px;
  text-align: center;
}

section p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  text-align: justify;
  line-height: 30px;
}

@media only screen and (max-width: 600px) {
  section p {
    margin: 0 15px;
    font-size: 15px;
  }
}

#services {
  color: #fff;
  background-image: url('img/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}