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

body {
    font-family: "Arial", sans-serif;
    background-color: #141411;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card {
    background-color:#1F1F1F;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    padding: 20px;
    width: 320px;
    height: 33rem;
  }

  .card h2 {
    font-size: 12px;
    font-weight:normal;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 9px;
    padding-top: 15px;
    font-family: sans-serif;
  }

  .card p {
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    padding-top: 14px;
  } 

  
.socials {
    background-color: #333;
    border-radius: 7px;
    border: none;
    font-size: small;
    text-align: center;
    width: 250px;
    font-weight: bold;
    font-family: sans-serif;
    color: #fff;
    height: 2.5rem;
    margin-top: 13px;
    transition: background-color 0.3s ease;
}

.socials:hover {
  background-color: #C4F82A; 
  color: black;
}

  .author {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
  }
  
  .author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 20px;
    align-items: center;
  }
  
  .country {
    font-size: 12px;
    font-weight: bold;
    font-family: sans-serif;
    color: #C4F82A;
  }

  @media only screen and (max-width: 1200px) {
    .Container {
      width: 40%;
    }
  }
  @media only screen and (max-width: 600px) {
    .Container {
      width: 85%;
    }
  }

