@import url("styles.css");
/* ===== ABOUT =====*/
.about__container {
    row-gap: 3rem;
    text-align: center;
  }
  .about__subtitle {
    margin-bottom: var(--mb-2);
  }
  .about__img {
    justify-self: center;
  }
  .about__img img {
    width: 300px;
    border-radius: 0.5rem;
  }
  .about__text {
    text-indent: 2rem; /* Adjust the size of the tab */
    font-size: 1rem;  /* Adjust text size */
    color: var(--text-color);  /* Use your theme's text color */
    line-height: 1.6;  /* Improve readability */
    text-align: justify; /* Align text nicely */
  }
  /* ===== Download CV & CONTACT =====*/
  .buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center; /* Center buttons */
  }

  .buttons a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--first-color);
    color: white;
    border-radius: 5px;
    transition: 0.3s;
  }

  .buttons a:hover {
    background-color: #4e2d2d; /* Darker shade */
  }

  .cm-button {
    background-color: var(--second-color);
  }