* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(180deg, #c5bdf8 0%, #2969e0 100%);
}

.profile {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

h1{margin-top: 5px; font-size: 26px; text-align: center;}

.text {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.fast-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
    color: #333;
}

.icon-links {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 30px;
    color:#1A3EAD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about {
  text-align: center;
  max-width: 400px;    /* Keeps the paragraph from getting too wide */
  margin: 20px auto;   /* Centers the container and adds top/bottom space */
  padding: 0 15px;     /* Prevents text from hitting the screen edges on mobile */
  background: #fff;
  border-radius: 20px;
}

.about p {
  line-height: 1.6;    /* Makes the text much easier to read */
  color: #444;         /* A soft dark grey looks more modern than pure black */
}
.links-button {
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.links-button:hover {
    transform: translateY(-3px);
}

.links-button i {
    font-size: 25px;
    margin-right: 15px;
}

.fa-facebook { color: #1877F2; }
.fa-instagram { color: #E4405F; }

.btn-text {text-align: left; flex-grow: 1;}
.btn-text b {display: block; font-size: 16px;}
.btn-text span {display: block; font-size: 12px; color: #777;}
.arrow {color: #CCC; font-size: 18px;}

@media screen and (max-width: 480px) {
  .container {
    width: 92%; /* Almost full width on tiny screens */
    margin-top: 10px;
  }

  .fast-links {
    gap: 10px; /* Tighten up the icon spacing */
  }

  .links-container i {
    width: 40px; /* Smaller circles for small thumbs */
    height: 40px;
    font-size: 16px;
  }

  .about {
    padding: 15px; /* Less padding to save space */
  }
}
