@font-face {
    font-family: 'OppaiCake';
    src: url('assets/fonts/CreamCake.woff2') format('woff2'),
         url('assets/fonts/CreamCake.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OppaiMedium';
    src: url('assets/fonts/PoppinsMedium.woff2') format('woff2'),
         url('assets/fonts/PoppinsMedium.woff') format('woff');
    font-weight: 50;
    font-style: normal;
}
@font-face {
    font-family: 'OppaiThin';
    src: url('assets/fonts/PoppinsThin.woff2') format('woff2'),
         url('assets/fonts/PoppinsThin.woff') format('woff');
    font-weight: normal;
    font-style: bold;
}

body {
  font-family: 'OppaiMedium', sans-serif;
  padding: 0;
  margin: 0;
  background: linear-gradient(45deg, #a020f0, #000000, #8B008B);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

#social-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

abx-navbar a {
  font-family: 'OppaiMedium', sans-serif;
}

.mySkillBox h3 {
  font-family: 'OppaiCake', sans-serif;
  font-size: 34px;
  padding: 0;
  margin: 0;
}

abx-navbar img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

 #typingContainer {
        font-size: 2em;
        font-weight: bold;
        display: inline-block;
        position: relative;
    }

    #typingText::after {
        content: "";
        display: inline-block;
        width: 2px;
        height: 1.2em;
        background-color: white;
        position: absolute;
        right: -5px;
        bottom: 5px;
        animation: blinkCursor 0.6s steps(2) infinite;
    }

    @keyframes blinkCursor {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }

    #underline {
        width: 100%;
        height: 2px;
        background-color: white;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
        animation: underlineAnim 1s ease-in-out infinite alternate;
    }

    @keyframes underlineAnim {
        0% { transform: scaleX(0); }
        100% { transform: scaleX(1); }
    }
    
    /* Card Style */
    .card {
    max-width: 90vw;
    width: 100vw;
    padding: 0;
    background: none;
    border-radius: 10px;
    text-align: start;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.card img {
    width: 50%;
    border-radius: 10px;
}

.card h2 {
    margin: 10px 0;
    font-size: 20px;
}

.card p {
    font-size: 14px;
    color: #B6B6B6;
}

.card .date {
    font-size: 12px;
    color: gray;
}

/* Fade-in effect */
.fade-in {
    opacity: 1 !important;
}

.fade-out {
    opacity: 0 !important;
}

#clock {
  display: flexbox;
  text-align: center;
  align-items: center;
}

#timeIcon {
  width: 13px;
  height: 13px;
}

#iconGrid {
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr)); /* Dinamis */
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  margin: auto;
}

#iconGrid img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.mainAbout {
  padding: 17px;
}