html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(rgba(23,28,41,0.83),rgba(38,41,53,.98)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile {
  background: rgba(25,30,39,0.90);
  border-radius: 13px;
  padding: 2.1em 2.1em 2.4em 2.1em;
  max-width: 400px;
  width: 93vw;
  text-align: center;
  color: #edeeff;
  box-shadow: 0 8px 28px 0 rgba(0,0,0,0.27);
}
.profile h1 {
  font-size: 2rem;
  margin-bottom: .2em;
}
.years {
  color: #47e0be;
  font-weight: 600;
  font-size: 1.13em;
}
.summary {
  margin: 1em 0 0.6em 0;
  font-size: 1.08rem;
}
.logo-list {
  color: #fff397;
  font-size: 0.98rem;
  margin-bottom: 1.15em;
}
.profile .logo-list a {
  color: #fff397;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
}
.profile .logo-list a:hover,
.profile .logo-list a:focus {
  color: #47e0be;
  text-decoration: none;
}
.linkedin-link {
  display: inline-block;
  background: #1877f2;
  color: #fff;
  border-radius: 29px;
  text-decoration: none;
  margin-top: .7em;
  padding: .8em 2.1em;
  font-weight: 600;
  font-size: 1.13rem;
  transition: background .13s;
}
.linkedin-link:hover {
  background: #115da8;
}
.profile-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-top: -20px;
  margin-bottom: 1.1em;
  border: 3px solid #47e0be;
  box-shadow: 0 4px 18px 0 rgba(71,224,190,0.13);
  background: #fff;
}
@media (max-width:500px) {
  .profile {
    padding: .8em .2em;
    max-width: 98vw;
  }
  h1 {
    font-size: 1rem;
  }
}