*{
  font-family: sans-serif;
  font-size: normal;
  transition: all 0.5s ease;
  margin: 0 auto;
}
body{
  background-image: linear-gradient(to right, powderblue,pink);
}
.image-and-name img{
  width: 300px;
  height: 300px;
  border: 10px solid black;
  border-radius: 200px;
  margin: 20px;
}
.name{
  font-size: 40px;
  margin: 20px;
}
.image-and-name{
  /* border: 5px solid black; */
  text-align: center;
  width: 50%;
 
}
.description{
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50%;
  height: 100px;
  margin-bottom: 30px;
  font-size: 30px;
  padding: 10px;
  text-align: center;
}
.description p:nth-child(2)
{
  font-style: italic;
}
.content{
  width: 50%;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
 
}
.btn{
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 10px solid gray;
  border-right: 10px solid gray;
  margin: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 20% 80%;
  justify-content: space-between;
  align-items: center;
}
.btn:hover{
  background-color: yellow;
  border-bottom: none;
  border-right: none;
}
.facebook a{
  text-decoration: none;
  font-size: 30px;
  color: blue;
  font-weight: bolder;
}
.instagram a{
  text-decoration: none;
  font-size: 30px;
  color: blueviolet;
  font-weight: bolder;
}
.phone a{
  text-decoration: none;
  font-size: 30px;
  color: #61F054;
  font-weight: bolder;
}
.github a{
  text-decoration: none;
  font-size: 30px;
  color: black;
  font-weight: bolder;
}
.content img{
  border-radius: 200px;
}
/* moible */
@media only screen and (max-width:46.187em){
  .image-and-name img{
    width: 200px;
    height: 200px;
    border: 5px solid black;
    border-radius: 200px;
    margin: 10px;
  }
  .name{
    font-size: 18px;
    margin: 15px;
  }
 
  .description{
    height: 50px;
    font-size: 15px;
    padding: 5px;
  }
  .content{
    width: 90%;
    align-content: start;
    align-items: center;
  }
  .btn{
    margin: 30px;
    padding: 10px;
  }
  .facebook a{
    text-decoration: none;
    font-size: 15px;
    color: blue;
    font-weight: bolder;
  }
  .instagram a{
    text-decoration: none;
    font-size: 15px;
    color: blueviolet;
    font-weight: bolder;
  }
  .phone a{
    text-decoration: none;
    font-size: 15px;
    color: #61F054;
    font-weight: bolder;
  }
  .github a{
    text-decoration: none;
    font-size: 15px;
    color: black;
    font-weight: bolder;
  }
  .content img{
    border-radius: 200px;
    width: 25px;
    height: 25px;
  }
  }
