* {
  box-sizing: border-box;
}

body {
  background-color: #28223f;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.name {
  margin: 10px 0;
}

.title {
  font-size: 14px;
  line-height: 21px;
  margin-top: -5px;
  margin-bottom: 20px;
}

.card {
  background-color: #231e39;
  border-radius: 5px;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
  color: #b3b8cd;
  padding-top: 30px;
  position: relative;
  width: 350px;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 610px) {
  .card {
    transform: scale(1.5);
  }
}

@media (min-width: 475px) and (max-width: 610px) {
  .card {
    transform: scale(1.25);
  }
}

@media (min-width: 0px) and (max-width: 475px) {
  .card {
    transform: scale(1);
  }
}

.photo {
  border: 1px solid #03bfcb;
  border-radius: 50%;
  padding: 7px;
  width: 128px;
  height: 128px;
}

.download {
  color: #b3b8cd;
}

.skills {
  background-color: #1f1a36;
  text-align: left;
  padding: 15px;
}

.skills ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.skills ul li {
  border: 1px solid #2d2747;
  border-radius: 2px;
  display: inline-block;
  font-size: 12px;
  margin: 0 7px 7px 0;
  padding: 7px;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.social {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-item {
  margin: 5px;
  color: #b3b8cd;
  font-size: 40px;
  transition: all 0.3s;
}
