/* General */

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

footer {
    text-align: center;
    margin: 75px 0px;
}

h1 {
    font-size: 2.6em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.4em;
}

p {
    font-size: 1em;
}

a {
    text-decoration: none;
    color: rgb(73, 73, 73);
}

/* Special */

#page-left {
    margin: 10px 30px 0px 10px;
}

#profile {
    position: sticky;
    top: 0;
    padding: 20px;
}

#page-right {
    margin-right: 50px;
}

#headshot {
    margin: 0px 0px 10px;
    max-width: 250px;
    border-radius: 50%;
}

#left-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3em;
}

#main-title {
    text-align: center;
}

#summary {
    text-align: left;
}

.goal-tech {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
}

.goals,
.outcomes,
.tech {
    max-width: 260px;
}

#education > h3 {
    margin-bottom: 0px;
}

#date-degree {
    display: flex;
    justify-content: space-between;
}

#certificates > h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.cert-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cert-details > h4 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.details-left {
    text-align: right;
}

#more {
    border: none;
    background: none;
    font-size: 0.8em;
}

/* Responsiveness */

@media screen and (min-width: 900px) {
    main {
        display: flex;
    }
}

@media screen and (max-width: 899px) {
    #page-right {
        margin-left: 50px;
    }
    
    #headshot {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

    .goal-tech {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    #page-right {
        margin: 20px;
    }
}