.basicinfo {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2em;
    align-items: center;
    justify-items: center;
}

.basicinfo img {
    max-width: 90%;
}

.socmed {
    display: flex;
    justify-content: center;
    gap: 2em;
    width: 90%;
    margin: 2em auto;
}

.socmed img {
    max-height: 3em;
}

.basicinfo p {
    margin: 0 2em;
}

h5 {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin-top: 2rem;
}

.location {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
}

.experience p {
    display: flex;
    justify-content: space-between;
}

main ul {
    margin-bottom: 2rem;
    padding-left: 1em;
}

.locationspan {
    margin-bottom: 0rem;
    margin-top: 1rem;
}

/*Wider than Tablet*/
@media only screen and (min-width: 761px){
    .basicinfo {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .socmed img {
        max-height: 4em;
    }

    h5 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        /* margin-top: 2rem; */
    }

    .location {
        display: flex;
        flex-direction: row;
        justify-content:space-between;
    }
}