body{
    background-color: hsl(0, 0%, 8%);
}

.main-card{
      margin: 10px auto;
  width: 400px;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgb(255 0 0 / 0.0);
  background-color: hsl(0, 0%, 12%);
}
.card{

    margin: 5px;
    text-align: center;
  
}

.image{
    text-align: center;
     
}

.image img{
     border-radius: 50%;
    object-fit: cover;
    width: 200px;
    height: 200px;
}

.name{
    color: white;
    font-size: medium;
    font-style:normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.city{
    color: yellowgreen;
    font-size: small;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: inherit;
}

.summary{
    color: white;
    font-weight: 200;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.socials{
    text-align: center;
}

.socials button{
    padding: 10px;
    /* border: 2px solid; */
    border-radius: 8px;
    font-size: 1rem;
    background-color:hsl(0, 0%, 20%);
     width: 250px;
      height: 40px;
      margin-bottom: 5px;
      cursor: pointer;
}

button{
    color: white;
    font-weight: bold;
    background-color:hsl(0, 0%, 20%);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


button:hover{
    background-color: yellowgreen;
}


/* Mobile phones: up to 480px */
@media screen and (max-width: 480px) {
  .main-card {
    width: 90%;
    padding: 15px;
  }

  .name {
    font-size: 1.2rem;
  }

  .city {
    font-size: 0.9rem;
  }

  .summary {
    font-size: 0.9rem;
  }

  .socials button {
    width: 100%;
    font-size: 0.95rem;
  }
}

/* Tablets: 481px to 768px */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .main-card {
    width: 90%;
    padding: 20px;
  }
}

/* Desktops: 769px and above */
@media screen and (min-width: 769px) {
  .main-card {
    width: 80%;
    max-width: 400px;
    padding: 25px;
  }
}