.aboutme {
    background-color: #3F5866;
}

.aboutme__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    min-height: 100vh;
    height: auto;
    background-color: #3F5866;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    font-family: 'Syne Mono';
}

.aboutme__content h1 {
    padding: 1rem 0rem;
    background-color: #3F5866;
    background-image: linear-gradient(to top, #FF8F00 0%, #FF8F00 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.aboutme__content--p {
    display: block;
    font-size: 1.1rem;
    padding: 0.5rem 2rem 0.5rem 0rem;
    color: #BDD3DE;
}

.aboutme__content--p b {
    color:#F0F0DF;
    font-weight: 500;
}

.aboutme__skills h1 {
    font-size: 1.25rem;
    color: #F0F0DF;
    font-weight: 500;
    padding: 1rem 0;
}

.aboutme__skills p {
    display: grid;    
    grid-template-columns: 1fr 1fr;   
    color: #BDD3DE; 
    font-size: 1.1rem;
}

.aboutme__skills b {    
    color: #F0F0DF;
    font-weight: 500;
}


/* Mobile responsive */
@media screen and (max-width: 768px) {
    .aboutme__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: calc(100vh - 80px);
    }

    .aboutme__skills {
        justify-items: start;
        align-items: self-start;
    }
}

@media screen and (max-width: 480px) {  
    .aboutme__container {
        height: 100%;
    } 

    .aboutme__content h1 {
        font-size: 1.5rem;
    }

    .aboutme__content--p {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    .aboutme__skills p {
        font-size: 0.8rem;
    }

    .aboutme__skills h1 {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

}