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

body {
  background: rgb(243, 243, 243);
  display: flex;
  max-width: 750px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  font-family: sans-serif;
}

.card {
  width: 500px;
  height: 300px;
  background: #fff;
  display: flex;
  flex-direction: row;
}

.image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  background-size: #202729;
}

.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid rgb(255, 191, 71);
}

.details {
  width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.text {
  margin-top: 20px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.socialicons {
  margin-top: 20px;
}

.social {
  margin: 4px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255, 191, 71);
  font-size: 20px;
  line-height: 40px;
  color: #000;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
