@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1{
    font-size: 42px;
    font-weight: 700;
    line-height: 45px;
}

p{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

a{
    color: #000;
}

.main{
    display: flex;
    flex-direction: row;
    width: auto;
    height: 100vh;
    
    
}

.primary-column{
    display: flex;
    flex-direction: column;
    width: 35%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem;
    
    
}

.secondary-column{
    width: 50%;
    overflow-y: auto;
    padding: 4rem;
}

.profile{
    width: 35%;
    border-radius: 55%;
}

.social-media ul{
    list-style: none;
    display: flex;
    padding: 0;
}

.social-media ul li{
    margin-right: 25px;
}

.grid
{
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 2px 4px rgba(0,0,0,.03);
    margin-bottom: 25px;
}

.inner-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about p{
    font-size: 16px;    
    line-height: 26px;
}

.resume{
    width: 50%;
    padding: 10px 20px;
    margin-right: 25px;
}

.email{
    width: 50%;
    padding: 10px 20px;
}







@media only screen and (max-width:600px) {
    h1{
        font-size: 32px;
        font-weight: 700;
        line-height: 42px;
    }
    
    p{
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
    }

    .main{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow-y: auto;
        padding: 10px 10px;
        overflow-x: hidden;
    }

    .primary-column{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        /* padding: 20px; */
        padding: 0;
    }
    
    .secondary-column{
        width: 100%;
        /* padding: 20px; */
        padding: 0;
    }

    .profile{
        width: 35%;
        border-radius: 55%;
    }
    
    .social-media ul{
        list-style: none;
        display: flex;
        padding: 0;
    }
    
    .social-media ul li{
        margin-right: 15px;
    }
    
    .grid
    {
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 2px 4px rgba(0,0,0,.03);
        margin-bottom: 25px;
    }
    
    .inner-container{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .about p{
        font-size: 16px;    
        line-height: 26px;
    }
    
    .resume{
        width: 50%;
        padding: 10px 20px;
        margin-right: 25px;
    }
    
    .email{
        width: 50%;
        padding: 10px 20px;
    }
}