/* Keyframe for blinking fullstop - looks cool eh :D */
@keyframes blink {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}

.blink {
    animation: blink 2s infinite;
}

body {
    background-color: #FAF9F6;
}

h1, h2, h3, p {
    font-family: 'JetBrains Mono', monospace;
    flex: 1;
}

h1 {
    font-size: 96px;
}

h2 {
    font-size: 32px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
}

#headding-section {
    max-width: 700px;
}

#profile-pic {
    max-width: 200px;
    border-radius: 10px;
    flex: 1;
}

#work-experiance-section {
    min-width: 830px;
}

#projects-section {
    min-width: 895px;
}

.work-experiance-para {
    font-size: 16px;
    color: #656565;
    max-width: 624px;
    padding-bottom: 37px;
}

#social-buttons {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.logo {
    padding-bottom: 16px;
    flex: 1;
    transition: ease-in-out;
    transition-duration: 200ms;
}

.logo:hover {
    cursor: pointer;
    filter: brightness(2);
    transition: ease-in-out;
    transition-duration: 200ms;
}

.active-chip {
    border-radius: 10px;
    border: 2px solid #437406;
    background-color: #CAF0CC;
    color: #437406;
    font-size: 13px;
    text-align: center;
    font-style: italic;
    padding-left: 5px;
    padding-right: 5px;
}

#projects-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#project-section-headder {
    min-width: 890px;
}

.project-box {
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;

    max-width: 284px;

    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.project-box p {
    color: #656565;
    max-width: 250px;
}

.project-box-headder {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: space-between;
}

.project-box-headder-textbox {
    max-width: 150px;
}

.project-box-headder-textbox h3 {
    margin: 0;
}

/* Existing styles */
/* ... */

/* Styles for screens smaller than 600px */
@media screen and (max-width: 600px) {

    html {
        min-width: 100%;
    }

    h1 {
        margin-top: 0;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .section {
        flex-direction: column;
    }

    #headding-section {
        max-width: 100%;
    }
    
    #profile-pic {
        width: 50%;
        /* max-height: 50%; */
        border-radius: 10px;


    }

    #work-experiance-section {
        padding-top: 10%;
        min-width: 100%;
        text-align: center;
    }
    
    #projects-section {
        min-width: 100%;
    }
    
    .work-experiance-para {
        padding: 5%;
        font-size: 16px;
        color: #656565;
        max-width: 100%;
        text-align: center;
    }

    #social-buttons {
        display: flex;
        flex-direction: row;
        align-self:center;
        align-items: center;
    }

    .logo {
        margin: 20px;
        flex: 1;

    }

    #project-section-headder {
        min-width: 100%;
        text-align: center;
    }

    #projects-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* .project-box-headder-textbox {
        max-width: 80%;
    } */

    .project-box {
        border: 2px solid black;
        border-radius: 10px;
        padding: 10px;
        margin: 10px;

        min-height: 200px;
    }

}

