* {
  margin: 0;
  padding: 0;
}

html {
  background-color: rgb(26, 197, 204);
  padding: 20px;
}

.jumbotron img {
  width: 100%;
  height: 400px;
}

header {
  height: 50px;
  color: #fff;
  background-color: rgb(241, 85, 37);
  padding: 5px 10px;
  margin-bottom: 10px;
}

header #logo {
  text-transform: uppercase;
}

#container {
  font-family: 'Open Sans', sans-serif;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  font-size: 1rem;
}

#services ul {
  margin-bottom: 20px;
  font-size: 14pt;
}

#services li {
  list-style: none;
  padding-bottom: 5px;
}

.paper {
  display: block;
  background-color: #ffffff;
  padding: 20px;
  margin: 10px 0;
}

nav ul {
  list-style: none;
  text-align: right;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 45px;
}
nav ul li {
  display: inline-block;
  padding-left: 20px;
}

nav ul li:hover {
  font-size: 115%;
}

/* for small devices */
@media only screen and (max-width: 850px) {
  #container {
    width: 95%;
  }

  header h1 {
    text-align: center;
  }

  nav {
    text-align: right;
    position: fixed;
    right: 2px;
    top: 100px;
  }
  nav ul {
    width: auto;
    height: 110px;
    display: inline-block;
  }
  nav ul li {
    display: block;
    padding: 0 5;
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: padding 0.2s ease;
    font-weight: bold;
  }

  nav ul li:hover {
    background-color: #000;
    color: #fff;
    margin-left: -10px;
    transition: padding 0.2s ease;
  }
}

/* for large devices */
@media only screen and (min-width: 850px) {
  #container {
    max-width: 1200px;
  }
  nav ul {
    position: relative;
    float: right;
  }
}
