html, body {
  overflow-x: hidden;
}

[data-aos] {
  visibility: hidden;
}
.aos-init[data-aos] {
  visibility: visible;
}

body {
  background: linear-gradient(120deg, rgba(43,34,59,1) 21%, rgb(52, 66, 98) 88%, rgba(120,215,195,1) 160%) fixed;
}

*, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }

/* STYLES for About/Skills Section */
.about-section {
    margin: auto;
    width: 90vw;
    max-width: 950px;
    padding: 40px 0;
    color: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background-color: #2c3852;
    padding: 30px;
    border-radius: 10px;
}

.about-column h4 {
    color: #9eebda;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #4bb3b894;
    padding-bottom: 10px;
}

.about-column .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-column .skills span {
    background-color: #3e5074;
    color: #c9e3ff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    /* No grid styles needed here anymore */
}

@media screen and (max-width:768px) {
    body {
      background: linear-gradient(94deg, rgba(43,34,59,1) 21%, rgb(52, 66, 98) 88%, rgba(120,215,195,1) 160%);
      background-attachment: scroll;
    }
}