body {
  font-family: Arial;
  background-color: aliceblue;
  padding: 40px 0;
}

h1 {
  font-size: 25px;
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
}

h3 {
  margin-top: 5px;
}

span {
  color: grey;
}

.container {
  box-shadow: 0 0 20px grey;
  width: 960px;
  max-width: 95vw;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px;
}

section,
header {
  padding: 10px 60px 20px 60px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
}

header ul {
  list-style: none;
  padding-left: 30px;
}

li {
  margin-bottom: 15px;
  font-size: 15px;
}

.address-icon {
  width: 16px;
  height: 16px;
  background-color: cornflowerblue;
  margin-right: 10px;
  padding: 8px;
  vertical-align: middle;
}

.circle {
  border-radius: 50%;
}

.profile-picture {
  width: 180px;
  height: 180px;
}

.hobbies {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.hobbies li {
  width: 50%;
  display: flex;
  align-items: flex-start;
}

.hobbies div {
  margin-left: 20px;
}

.hobbies p {
  color: grey;
  line-height: 1.5;
}

p {
  line-height: 1.5;
}

.cv-download-link {
  border: 2px solid cornflowerblue;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 26px;
  transition: background-color 0.5s, color 0.5s;
  box-shadow: 0 0 20px grey;
}

.cv-download-link:hover {
  color: white;
  background-color: cornflowerblue;
}

.cv-download-link:focus {
  outline: none;
  color: white;
  background-color: cornflowerblue;
}

.cv-download-link:active {
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
    section,
    header {
      padding: 15px 20px 15px 20px;
    }
    header ul {
        padding-left:8px;
    }
}

@media screen and (max-width: 860px) {
  header {
    display: block;
  }
  header ul {
    padding-left: 0;
  }
  .hobbies {
    display: block;
  }
  .hobbies li {
    width: 100%;
  }
  section,
  header {
    padding: 5px 20px 10px 20px;
  }
  body {
    padding: 10px 0;
  }
  .container {
    padding:16px 0;
  }
}
