body {
    display: flex;
    margin: 0px;
    justify-content: center;
    align-items: center;
    height: 580px;
    background-color: #b8b7b7;
    cursor: url(cursor.png), auto;
    a, button, .clickable-element {
        cursor: url(pointer.png), pointer;
  }
  
  .main {
    width: 400px;
    height: 530px;
    background-color: #575757;
    border-radius: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 100px rgba(0, 0, 0, 0.7);
  }
  
  .main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: #8c7b79;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
  }
  
  .photo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  }
  .name {
    position: absolute;
    top: 28%;
    left: 23%;
    color: white;
    font-size: 30px;
    font-weight: bolder;
    font-family: Pixelify Sans, Arial, Helvetica, sans-serif;
    text-align: center;
  }
  
  .tagline {
    position: absolute;
    top: 40%;
    left: 17%;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: bold;
    border: 40px;
    border-color: #8c7b79;
  }
  
  .about {
    position: absolute;
    top: 50%;
    border-radius: 10px;
  
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .self{
    position: absolute;
    top: 65%;
    left: -40px;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .lower {
    position: absolute;
   bottom: 0%;
 
    width: 400px;
    height: 60px;
    background-color: #8c7b79;
   border-radius: 80px;
  }
  
  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin-left: auto;
    margin-top: 10px;
    gap: 30px;
    font-size: 35px;
  }
  
  .social a {
    color: #572323;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social a:hover {
    transform: scale(1.4); /* Makes the icons grow on hover */
    color: #000000; /* Changes color on hover */
  }
  