* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #1e3148;
  font-family: "PT Sans", sans-serif;
}

.profile-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0 30px;
}

.profile-card {
  flex: 1 1 30%;
  max-width: 300px;
  background: #fff;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 0 2px 0 #ccc;
  transition: 0.3s;
}

.profile-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px -5px #ccc;
}
.profile-icon {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.profile-name {
  font-size: 24px;
  font-weight: bold;
  margin: 25px 0 10px 0;
}

.profile-position {
  font-size: 14px;
  color: #777;
}
.button {
  margin: 40px 0 0 0;
  padding: 10px 30px;
  color: #999;
  text-decoration: none;
  border: 1px solid #999;
  border-radius: 4px;
}
.button:hover {
  color: #fff;
  background: cornflowerblue;
  border: 1px solid cornflowerblue;
}

@media screen and (max-width: 1000px) {
  .profile-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .profile-card {
    padding: 20px 15px;
  }
  .profile-name {
    font-size: 16px;
  }
}
