* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --darkblue: #31343D;
    --lightblue: #92CCCD;
    --background: #EDEDF6;
    --bluefont: #445876;
}

header {
    display: flex;
    flex-wrap: wrap;
}

header h1 {
    width: 100%;
    margin: 40px 0 0 50px;
}

header nav {
    margin: 10px 100px;
}

header nav a {
    color: black;
    font-size: 20px;
    font-style: normal;
    text-decoration: none;
    padding: 0 10px 0 0;
}

body {
    background-color: var(--background);
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    margin: 20px 0 0 20px;
}

section div{
    display: flex;
    flex-wrap: wrap;
    margin: 0px 0px;
    width: 90%;
    border-left: 4px solid var(--bluefont);
}

section .small {
    text-align: center;
    padding: 0 0 0 0px;
}

.profile-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 0 0;
}

.profile-image-container {
    background-image: url(../images/Profile_Picture.jpg);
    background-size: cover;
    width: 200px;
    height: 200px;
    border: 4px solid blue;
    border-radius: 50%;;
}

section h2 {
text-align: center;
width: 100px;
color: var(--bluefont);
margin: 0 40px 0 0;

}

section .job-title {
    font-weight: bold;
    font-size: 18px;
}

section p {
    width: 100%;
    padding: 0 0 10px 30px;
    color: var(--bluefont);
}

.skills {
    margin: 0 150px;
    color: var(--bluefont);
}
