* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'courier new', Courier, monospace;
  color: #41364b;
}

body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3e7e0; 
}

.card {
  height: 22rem;
  width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.8rem;  
}

.card, .profile-image, .fab, .contato{
  box-shadow: -0.1rem -0.1rem 0.3rem #fff, 0.1rem 0.1rem 0.3rem;
}

.profile-image{
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title{
  font-weight: 700;
  margin: 1rem 0;
}

.social-icons{
  margin: 1rem;
}

.fab{
  height: 2rem;
  width: 2rem;
  padding: 0.5rem;
  border-radius: 50%;
  text-align: center;
}

.img {
  height: 6rem;
  width: 6rem;
  background-image: url('../img/profile.jpg') ;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.contato{
  background: none;
  border: none;
  padding: 0.7rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.fab:hover, .contato:hover{
  box-shadow: inset -0.1rem -0.1rem 0.3rem #fff, 
              inset 0.1rem 0.1rem 0.3rem #868686;
  cursor: pointer;
}