body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000;
    padding: 20px;
    padding-bottom: 62px;
}

/* header .logo {
    max-width: 150px;
    height: auto;
} */

header .logo {
    max-width: 74px;
    height: auto;
    transform: scale(2);
    margin-top: 2%;
}

nav {
    background-color: #343a40;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li :hover  {
    color: black;
    text-decoration: none;
    font-size: 18px;
    /* outline: #f9f8f8;
    outline-style: outset;
    outline-color: antiquewhite;
    outline-width: 7px;
    background-color: antiquewhite; */
}

.active-nav-hover  {
    color: white !important;
}

.cyberpunk-divider {
    margin: 40px auto;
    width: 80%;
    height: 10px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.8), rgba(255, 0, 255, 0.8));
    position: relative;
}

.cyberpunk-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #0ff;
    box-shadow: 0 0 15px #0ff, 0 0 30px #0ff, 0 0 45px #0ff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cyberpunk-divider:before {
    left: -30px;
}

.cyberpunk-divider:after {
    right: -30px;
}

.cyberpunk-divider:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-54%);
    width: 25px;
    height: 25px;
    background-color: #0ff;
    box-shadow: 0 0 15px #0ff, 0 0 30px #0ff, 0 0 45px #0ff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}


.section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 46px 0;
    padding: 57px;
}

.section-wrapper img {
    max-width: 353px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.8);
    margin-right: 148px;
    transform: scale(1.4)
}

/* .section-wrapper .description {
    max-width: 600px;
    text-align: left;
}

.section-wrapper .description h2 {
    color: #00ffff;
    font-size: 28px;
    margin-bottom: 10px;
}

.section-wrapper .description p {
    font-size: 16px;
    margin-bottom: 15px;
}

.section-wrapper .description a {
    color: #ff00ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2px solid #ff00ff;
}

.section-wrapper .description a:hover {
    color: #00ffff;
    border-bottom-color: #00ffff;
} */

.section-wrapper .description {
    max-width: 600px;
    text-align: left;
    background: linear-gradient(145deg, #333, #555);
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.8);
}

.section-wrapper .description h2 {
    color: #6cb9ff;
    font-size: 28px;
    margin-bottom: 22px;
}

.section-wrapper .description p {
    font-size: 16px;
    margin-bottom: 15px;
}

.section-wrapper .description a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2px solid #fff;
}

.section-wrapper .description a:hover {
    color: #00ffff;
    border-bottom-color: #00ffff;
}


nav ul li a.active {
    font-weight: bold;
    background-color: #2aa2cc;
    /* Or any other color for the active page */
    padding: 11px;
}



.intro {
    background: linear-gradient(145deg, #333, #555);
    border: 2px solid #000;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.8);
    max-width: 800px;
    margin: 116px;
    text-align: left;
    line-height: 1.6;
}

.intro h1 {
    color: #00ffff;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    animation: colorChange 3s infinite alternate;
}

.intro p {
    font-size: 18px;
    margin-bottom: 15px;
}

.about-body {
    display: flex;
    justify-content: center;
}

@keyframes colorChange {
    0% {
        color: #00ffff;
    }

    100% {
        color: #ffffff;
    }
}




/* Small Phones and Tablets portrait*/
@media (min-width: 320px) and (max-width: 480px) and (orientation: portrait) {
    .section-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding-top: 20px;
    }

    .section-wrapper img {
        transform: scale(1.1);
        max-width: 355px;
        margin-right: unset;
    }

    .section-wrapper .description {
        margin-top: 16%;
        width: 111%;
    }

    header .logo {
        max-width: 74px;
        height: auto;
        transform: scale(2);
        margin-top: 9%;
    }

    header {
        background-color: #000;
        padding: 20px;
        padding-bottom: 20px;
        padding-bottom: 62px;
    }
}

/* Large Phones and Tablets landscape*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    header {
        background-color: #000;
        padding: 15px;
        padding-bottom: 23px;
    }

    header .logo {
        max-width: 74px;
        height: auto;
        transform: scale(1.3);
        margin-top: 2%;
      }

      .section-wrapper img {
        transform: scale(1.01);
      }
      .section-wrapper {
        margin: unset;
        margin-bottom: 46px;
        padding: 17px;
        padding-top: 26px;
      }

      .section-wrapper .description {
        padding: 9PX;
        width: 269px;
        height: 163px;
      }

      .section-wrapper .description h2 {
        color: #6cb9ff;
        font-size: 22px;
        margin-bottom: 22px;
      }

      .section-wrapper .description p {
        font-size: 15px;
        margin-bottom: 15px;
      }
}