@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

@media (min-width: 769px) {
:root {
    --BlueTextColor: #044c79;
    --BlueTitleColor: #0088dd;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    
    z-index: 9999;

    font-size: 2rem;
    font-family: "Roboto Mono", monospace;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 3px solid rgba(0, 0, 0, 0);
    padding: 8px 14px;
    border-radius: 14px;
    background-color: #122238;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 40px #0066bb;
    

    width: 80%;
    margin: 2% auto;

    text-decoration: none;
}

.nav-left:hover {
    transform: translateY(-10px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-image {
    border: 3px solid #00aaff;
    border-radius: 50%;
    box-shadow: 
        0 0 20px #00aaff,
        0 0 56px #0088dd,
        0 0 50px #0066bb;
        
}

.loresal-header {
    display: flex;
    justify-content: center;
    padding: 4%;
    align-items: center;
    text-align: center;
    transform: translateX(5%);

    font-size: 1.4rem;
    
    color: var(--BlueTextColor);
    text-decoration: none;
}

.nav-left,
.header-about-me,
.header-my-projects,
.header-my-skills,
.header-showcase {
    display: flex;
    justify-content: center;
    align-items: center;

    border: 3px solid #01446e00;
    padding: 4px 10px;
    text-align: center;
    font-size: 1.4rem;
    align-items: center;

    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 2px #0088dd,
        0 0 4px #0066bb;
    
    color: var(--BlueTextColor);
    text-decoration: none;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.nav-left:hover,
.header-about-me:hover,
.header-my-projects:hover,
.header-my-skills:hover,
.header-showcase:hover {
    transform: translateY(-10px);
}

body {
    background: radial-gradient(circle at center,
    #012242 30%,
    #001533 40%,
    #000b1b 100%);
    font-size: 1.5rem;
    font-family: "Roboto Mono", monospace;
}

.about-me-title {
    margin-left: 14%;
    margin-top: 10%;
    font-size: 4rem;
    font-weight: normal;
    color: var(--BlueTitleColor);
}

.about-me-content {
    display: flex;
    align-items: center;
    gap: 8%;
    
    margin: 0 auto;
    max-width: 70%;

    color: var(--BlueTextColor);
}

.about-me-image {
    border: 3px solid #00aaff;
    border-radius: 50%;
    box-shadow: 
        0 0 20px #00aaff,
        0 0 56px #0088dd,
        0 0 50px #0066bb;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-me-image:hover {
    transform: translateY(-15px);
}

.about-me-fade-line {
    width: 70px;
    height: 500px;
    background-color: #00aaff;
    border-radius: 50px;

    box-shadow:
        0 0 30px #00aaff,
        0 0 30px #00aaff,
        0 0 60px #00aaff;
}

.link-moon {
    color: rgb(51, 15, 212);
    text-decoration: none;
}

.my-projects {
    margin-top: 12%;
}

.my-projects-title {
    text-align: center;
    transform: translateY(-100%);
    color: var(--BlueTitleColor);
    font-size: 4rem;
}

.my-projects-content {
    display: flex;
    justify-content: center;
    gap: 5%;
    padding: 3%;
}

.Game-1,
.Game-2,
.Game-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;
    max-width: 30%;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.Game-1:hover,
.Game-2:hover,
.Game-3:hover {
    transform: translateY(-15px);
}

.AFSL-image,
.ABS-image,
.FNaMW-image {
    display: block;
    margin: 4% auto;
    width: 90%;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 0.25%;
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;
}

.AFSL-title,
.ABS-title,
.FNaMW-title {
    font-size: 1.1rem;
    text-align: center;
    color: var(--BlueTitleColor);

    padding: 4%;
    max-width: 80%;
}

.AFSL-role,
.ABS-role,
.FNaMW-role {
    font-size: 1.1rem;
    text-align: center;
    color: var(--BlueTextColor);

    padding: 3%;
    transform: translateY(-20%);
    max-width: 80%;
}

.my-skills {
    margin-top: 20%;
}

.my-skills-title {
    text-align: center;
    color: var(--BlueTitleColor);
    font-size: 4rem;
}

.my-skills-content {
    display: flex;
    justify-content: center;

    margin-top: 7%;
    gap: 110px;
    align-items: flex-start;
}

.modeling {
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;

    max-width: 18%;
    text-align: center;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.modeling:hover {
    transform: translateY(-15px);
}

.programming {
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;

    max-width: 18%;
    text-align: center;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.programming:hover {
    transform: translateY(-15px);
}

.building {
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;

    max-width: 18%;
    text-align: center;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.building:hover {
    transform: translateY(-15px);
}

.moderation {
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;

    max-width: 18%;
    text-align: center;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.moderation:hover {
    transform: translateY(-15px);
}

.modeling-title,
.programming-title,
.building-title,
.moderation-title {
    margin-top: 7%;
    margin-bottom: 10%;

    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--BlueTitleColor)
}

.modeling-text,
.programming-text,
.building-text,
.moderation-text {
    max-width: 95%;
    color: var(--BlueTextColor);
}

.modeling-tag {
    margin-top: 10%;
    margin-bottom: 7%;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 60px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;
    width: 80%;
    background-color: #0066bb;
}

.programming-tag-1,
.programming-tag-2,
.programming-tag-3 {
    margin-top: 10%;
    
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 60px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;
    width: 80%;
    background-color: #0066bb;
}

.programming-tag-3 {
    margin-bottom: 7%;
}

.building-tag {
    margin-top: 10%;
    margin-bottom: 7%;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 60px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;
    width: 80%;
    background-color: #0066bb;
}

.moderation-tag {
    margin-top: 10%;
    margin-bottom: 7%;

    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 60px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;
    width: 80%;
    background-color: #0066bb;
}

.showcase {
    margin-top: 10%;
}

.showcase-title {
    text-align: center;
    color: var(--BlueTitleColor);

    font-size: 4rem;
}

.showcase-top,
.showcase-bottom {
    margin-top: 5%;

    display: flex;
    justify-content: center;
    
    gap: 45px;
}

.showcase-image-1,
.showcase-image-2,
.showcase-image-3,
.showcase-image-4,
.showcase-image-5,
.showcase-image-6 {
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
}

.showcase-top div,
.showcase-bottom div {
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 14px;
    box-shadow: 
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 50px #0066bb;

    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.showcase-top div:hover,
.showcase-bottom div:hover {
    transform: translateY(-15px);
}

.showcase-bottom {
    margin-top: 35px;
}

.footer {
    margin-top: 10%;
    padding: 40px;
    background-color: #0d1a2b;
    border-radius: 14px;

    box-shadow:
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 40px #0066bb;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;

    color: var(--BlueTextColor);
    font-family: "Roboto Mono", monospace;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-pfp {
    width: 80px;
    height: 80px;
    border: 3px solid #00aaff;
    border-radius: 50%;
    box-shadow: 
        0 0 20px #00aaff,
        0 0 56px #0088dd,
        0 0 50px #0066bb;
}

.footer-name {
    font-size: 1.6rem;
}

.footer-brand {
    opacity: 0.8;
}

.footer-middle h3,
.footer-right h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-middle li {
    margin: 6px 0;
}

.footer-middle a {
    color: var(--BlueTextColor);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-middle a:hover {
    color: #00aaff;
    transform: translateX(5px);
}

.footer-right p span {
    color: #00aaff;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-socials a {
    color: var(--BlueTextColor);
    text-decoration: none;
    font-size: 1rem;

    border: 1px solid rgba(0, 170, 255, 0.2);
    padding: 6px 12px;
    border-radius: 10px;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: #00aaff;
    border-color: #00aaff;
    box-shadow:
        0 0 10px #00aaff,
        0 0 20px #0088dd,
        0 0 40px #0066bb;

    transform: translateY(-4px);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
}
}