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

/* ------------------------------
   PAGE BACKGROUND
------------------------------ */
body {
    font-family: "Roboto", sans-serif;
    background-color: #0f2747;
}

/* ------------------------------
   MAIN PAGE WRAPPER
------------------------------ */
#wrapper {
    width: 1080px;
    margin: 0 auto;
}

/* ------------------------------
   HEADER / TOP BLUE SECTION
------------------------------ */
header {
    background-color: #163055;
    padding: 28px 18px 40px 18px;
    text-align: center;
}

/* Darker inner box inside header */
.header-inner {
    background-color: #1a2f4d;
    padding: 30px 20px 26px 20px;
}

/* Main name */
#header-text {
    font-family: "Julius Sans One", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #f1f1f1;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

/* Subtitle */
.subtitle {
    font-family: "Julius Sans One", sans-serif;
    font-size: 34px;
    font-weight: 400;
    color: #f1f1f1;
    margin-bottom: 34px;
}

/* ------------------------------
   NAVIGATION
------------------------------ */
nav {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

nav a {
    font-family: "Julius Sans One", sans-serif;
    font-size: 24px;
    color: #f1f1f1;
    text-decoration: none;
}

nav a:hover {
    color: #c7d9f4;
}

/* ------------------------------
   MAIN CONTENT SECTION
------------------------------ */
main {
    background-image: url("../_images/bkg image.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 550px;
    padding: 35px 18px 60px 18px;
}

/* Holds text box and photo side by side */
.content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
}

/* Left text box */
#body-text {
    width: 275px;
    background-color: #1a2f4d;
    color: #f1f1f1;
    font-size: 28px;
    line-height: 1.28;
    padding: 18px 16px;
}

/* Right image */
.profile-image {
    width: 610px;
    border-radius: 28px;
    display: block;
    margin-top: 18px;
}