body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: rgb(249, 249, 249);
  color: rgb(0, 54, 72);
  position: relative;
}

body::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(
    -180deg,
    rgb(0, 54, 72) 0px,
    rgb(0, 136, 170) 100%
  );
}

.layout {
  display: flex;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  margin-bottom:20px;
}

aside {
  min-width: 300px;
  border: 1px solid rgb(230, 230, 230);
  border-right: 0;
  border-top: 0;
  padding: 20px 30px;
  background-color: white;
  text-align: center;
}

aside .picture {
  width: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 30px;
}

aside .picture img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
}

aside h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

aside sub {
  display:block;
  font-size:14px;
  margin-bottom:20px;
  color:rgb(102, 102, 102);
}

aside sub a:hover {
  text-decoration:underline;
}

aside a.button {
  display: block;
  background-color: rgb(255, 107, 84);
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
}

main {
  background-color: white;
  flex-grow: 1;
  border: 1px solid rgb(230, 230, 230);
  border-top: 0;
}

main section {
  padding: 20px 40px;
  border-bottom: 1px solid rgb(230, 230, 230);
}

main section h2 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

main section .title {
  font-weight: 600;
  margin-bottom: 20px;
}

main section .bio {
  margin-bottom: 20px;
}

main section .bio p {
  margin-bottom: 10px;
}

.contact {
  margin: 40px 0 10px 0;
  display: flex;
  justify-content: space-between;
  color: rgb(102, 102, 102);
}

.contact a:hover {
  text-decoration: underline;
}

.contact ul {
  display: flex;
}

.contact li {
  font-size: 15px;
  margin-right: 10px;
}

.contact li i {
  margin-right: 3px;
}

.contact .icons li {
  font-size: 20px;
}

ul.experience li {
  display: flex;
  margin-bottom: 25px;
}

ul.experience li img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 30px;
}

ul.experience li .info strong {
  display: block;
  font-weight: 600;
}

ul.experience li .info sub {
  display: block;
  font-size: 13px;
  color: rgb(102, 102, 102);
}
