body {
    background-color: #121212;
    font-family: 'Catamaran', sans-serif;
}

.all {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.name {
    margin-top: 50px;
    margin-bottom: 25px;
    letter-spacing: 4pt;
    font-size: 48px;

}

.links {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

#linkedin, #github, #resume, #email {
    margin-left: 10px;
    margin-right: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.profile img {
    width: 340px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 5px;
}

.bio {
    width: 340px;
    color: #ffffff;
    font-size: 1.2rem;
}

footer {
    margin-top: 30px;
    color: #ffffff;
    text-align: center;
}

@media (min-width: 576px) {
    .name {
        margin-top: 50px;
        margin-bottom: 25px;
        letter-spacing: 4pt;
        font-size: 64px;
    
    }
    
    #linkedin, #github, #resume, #email {
        margin-left: 20px;
        margin-right: 20px;
    }

    .profile {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .profile img {
        width: 375px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 5px;
    }
    
    .bio {
        width: 375px;
        color: #ffffff;
        font-size: 1.2rem;
    }
}