* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
}

@font-face {
    font-family: 'monument extended';
    src: url(./MonumentExtended-Ultrabold.otf);
}

h1, h2, h3 {
    font-family: 'monument extended';
}

body {
    background-color: #050000;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    transition: background-color 0.3s ease;
}

body.light-mode, body.light-mode a {
    background-color: #fff;
    color: #0C151D;
}

body.light-mode .title {
    color: #0C151D;
}

body.light-mode .tool {
    color: #0C151D;
}

body.light-mode .bio {
    background-color: #fff;
}

body.light-mode .resume {
    background-color: #dfdddd;
    color: #333232;
    padding: 3px 12px;
    border: 2px solid #333232;
}

body.light-mode .resume-link {
    background-color: #dfdddd;
}

body.light-mode .hire-me-btn {
    background-color: #050000;
    color: #fff;
} 

body.light-mode .hire-me-btn a {
    background: #050000;
    color: #fff;
}

body.light-mode .project-links a {
    background: #86bee2;
    color: #050000;
}

h1, h2 {
    font-size: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

i {
    font-size: 1.6rem;
}

.fa-arrow-up-right-from-square {
    font-size: 1.1rem;
}

.fa-arrow-left {
    margin-bottom: 50px;
}

i:hover {
    cursor: pointer;
}

a {
    font-size: 1.02rem;
    color: #86bee2;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    font-style: italic;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

nav a {
    margin-left: 5px;
}

p, h3 {
    margin: 10px 0px;
    line-height: 1.5;
}

p, a {
    font-size: 1.1rem;
}

.container {
    width: 85%;
    max-width: 600px;
    margin: 30px auto;
}

.nav-social {
    font-size: 1.85rem;
    margin-left: 10px;
}

.enable-chaos {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.enable-chaos p {
    font-size: .86rem;
}

.main {
    margin: 20px 0 90px;
}

.bio {
    background-color: #050000;
    padding: 20px 0px 20px;
    border-radius: 6px;
}

.cta-btns {
    display: flex;
    gap: 10px;
    margin: 30px 0px 70px;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Ubuntu", sans-serif;
}

.status-indicator {
    position: relative;
    width: 16px;
    height: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4d7c0f;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 3;
}

.ripple-circle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: ripple 1.5s infinite ease-out;
}

.ripple-circle.delay {
    animation: 0.75s;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.hire-me-btn, .available-btn {
    padding: 10px 20px;
    background: #fff;
    border: none;
}

.hire-me-btn {
    padding: 13px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
    border-radius: 15px;
    cursor: pointer;
}

.hire-me-link .hire-me-btn {
    color: #050000;
}

.hire-me-btn a {
    text-decoration: none;
    font-style: normal;
    color: #050000;
    font-weight: 500;
}

.available-btn {
    padding: 11px 20px;
    background-color: #dcfce7;
    border-radius: 50px;
}

.status-text {
    color: #4d7c0f;
    font-size: .9rem;
    font-weight: 500;
}

.resume {
    display: inline-block;
    text-decoration: none;
    color: #dfdddd;
    padding: 3px 12px;
    border: 2px solid #dfdddd;
    border-radius: 30px;
}

.bio .resume-link {
    text-decoration: none;
}

.blog-link {
    font-weight: 500;
    color: #fff;
}

.project-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 5px;
    border: 1px solid #86bee2;
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 10px 0px;
    padding: 0px;
    overflow: hidden;
}

.dev-project-link {
    margin-bottom: 15px;
}

.dev-project-link a {
    font-size: 1rem;
}

.image-container {
    border-radius: 4px;
    margin-top: 10px;
    padding: 0px;
    height: 230px;
    width: 100%;
    overflow: hidden;
}

.project-img {
    width: 100%;
    padding: 20px 10px;
    animation: scroll-image 5s linear infinite;
}

@keyframes scroll-image {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(calc(200px - 100%));
    }
}

.project-text h3 {
    font-size: 1.3rem;
    padding: 0px 10px;
}

.project-text p {
    padding: 0px 10px;
}

.project-links {
    margin: 10px 0px 0px;
    background-color: #86bee2;
    padding: 10px 10px 15px;
}

.project-links a {
    margin-right: 10px;
    font-weight: 600;
    color: #050000;
    display: block;
}

.contact, .project {
    margin-top: 50px;
}

.contact-link {
    font-weight: bold;
}

.social {
    margin-right: 10px;
    text-decoration: none;
    font-size: 1.7rem;
}

.footer {
    margin-top: 60px;
    border-top: 1px solid lightgray;
    text-align: center;
    padding: 3px;
    font-size: 1.02rem;
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .project-card {
        display: flex;
        gap: 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .project-container {
        display: grid;
        grid-template-columns: 1fr;
    }
    
}

@media screen and (min-width: 600px) {
    h1, h2 {
        font-size: 2.7rem;
    }
    
}