body {
  background-image: url(/starter-code/assets/home/background-home-desktop.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  padding-top: 2.5em;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

nav img {
  margin-left: 3em;
  margin-top: 8px;
}

.line {
  margin: auto;
}

.hamburger {
  display: none;
  margin-right: 25px;
  margin-top: 7px;
}

.closeMenu {
  display: flex;
  justify-content: flex-end;
  margin: 1em;
}

@media screen and (max-width: 768px) {
  body {
    background-image: url(/starter-code/assets/home/background-home-mobile.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .nav-links {
    display: none !important;
  }

  h1 {
    font-size: 20px;
  }

  .mainMenu {
    height: 100%;
    position: fixed;
    top: -1em;
    right: 0;
    left: 0;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #304356;
    transition: top 1s ease;
  }

  .hamburger {
    display: flex;
    width: 2em;
    height: 2em;
    margin-right: 5em;
  }

  .side-bar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .closeMenu {
    display: flex;
  }
}

hr {
  width: 31%;
  position: absolute;
  margin-left: -8em;
  margin-top: -0.4em;
  border: 1px solid #8a97a8;
}

span {
  color: #d7e5ef;
}

.text p {
  font-size: 20px;
  color: #d7e5ef;
}

.nav-links {
  background-color: #404f66;
  width: 60%;
  height: 4em;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}
.nav-links a {
  text-decoration: none;
  color: #8a97a8;
  padding: 1.5em;
}

.nav-links a:first-of-type {
  border-bottom: 2px solid #fefefe;
}

.side-bar {
  margin-top: -4em;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #8a97a8;
  text-align: center;
  align-items: center;
}

.hidden {
  display: none;
}

.mainMenu li {
  list-style-type: none;
}

.mainMenu li a {
  display: inline-block;
  padding: 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: #bcc3c7;
  font-size: 1.2rem;
}

.mainMenu li a:hover {
  background: rgb(186, 148, 221);
}

.openMenu {
  font-size: 2rem;
  margin: 20px;
  display: none;
  cursor: pointer;
}

main {
  margin-top: 6em;
  max-width: 100%;
  display: flex;
  justify-content: space-around;
}

h3,
h1,
p {
  color: #fff;
}

h3 {
  color: #8a97a8;
  font-size: 2em;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

p {
  color: #8a97a8;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

h1 {
  margin-top: 3px;
  font-size: 3cm;
  text-transform: uppercase;
}

svg {
  margin-top: 7em;
}

@media screen and (max-width: 1020px) {
  body {
    background-image: url(/starter-code/assets/home/background-home-tablet.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -2.5em;
  }

  hr {
    display: none;
  }

  .nav-links {
    background-color: #131522 !important;
    width: 78% !important;
  }

  .nav-links span {
    display: none;
  }

  .nav-links a {
    display: flex;
    justify-content: space-around;
    padding: 1em;
  }

  .nav-links a:first-of-type {
    border-bottom: 2px solid #fefefe;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .text {
    width: 100%;
    text-align: center;
  }

  .circle {
    align-items: center;
    align-content: center;
    margin: auto;
  }

  span {
    margin-right: 10px;
  }
}
