
/* Media queries */

@media (max-width: 1700px) {
    .tabs a {
        font-size: 20px;
    }
}

@media (max-width: 1500px) {

    * {
        font-size: 14px;
    }

    .content {
        width: 70%;
    }

    .tabs {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 50px;
        width: fit-content;
    }   

    .tabs a {
        margin-bottom: 10px;
        font-size: 18px;
    }


    .profile_pic {
        width: 80px;
        height: 80px;
    }
    
    .title_container {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    h1 {
        font-family: Roboto Mono;
        font-size: 50px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -2px;
    
        float:inline-end;
        text-align: left;
    
        margin: 0;
    }

    h2 {
        font-size: 20px;
    }

    .about, .links {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    p {
        text-align: left;
        font-family: Roboto Mono;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.6px; 
        width: 100%;
    }


    .links a {
        margin-left: 0;
        margin-right: 20px;
    }
    
    
}