div, p.skills-label, .contact-label{
    cursor: default;
  }  

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Victor Mono", monospace;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background: linear-gradient(120deg, 
        #05101a 0%,
        #0f253b 25%,
        #1a3b5c 50%,
        #3b82a8 75%,
        #00c177 100%
    );
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    height: 100vh;
    animation: bgMove 40s ease-in-out infinite alternate;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;    
    gap: 40px;             
    max-width: 600px;       
    margin: 0 auto;         
    padding: 20px;
  }

.about,
.skills,
.contact {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact,
.skills,
.card {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  padding: 10px 20px;
  background: rgba(18, 18, 18, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  min-height: auto;
}

.box-skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

.box-skills {
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 12px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.box-skills:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #00c177;
    color: #000;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 20px rgba(0, 193, 119, 0.5);
    transition: all 0.3s ease;
}

.contact-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.contact_button {
  background-color: #00c177;
  color: #fff;
  padding: 8px 16px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Victor Mono", monospace;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.contact_button:hover {
  background-color: #00a05b;
}


.contact-label,
.skills-label {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 6px #1abe79;
    position: relative;
}

.contact-label::after,
.skills-label::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00c177;
    transition: width 0.3s ease;
}

.contact-label:hover::after,
.skills-label:hover::after {
    width: 100%;
}
