html {
    box-sizing: border-box;
    background-color: #000C48;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", 
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", 
    "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
}

.header {
    width: 100%;
    background-color: #000C48;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* .header-top {} */

.hero-banner {
    display: flex; 
    flex-direction: column;
}

.hero-banner--content,
.hero-banner--visual {
    flex: 50%
}

.hero-banner--content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 1rem;
}

/* .hero-banner--visual {} */

.hero-banner--content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero-banner--content p {
    color: white;
    font-size: 2rem;
    margin-bottom: 4.5rem;
}

.hero-banner--content img {
    margin-bottom: 4rem;
}

.picture {
    display: block;
    position: relative;
}

.profile-photo {
    max-width: 50%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 2rem auto;
}


.site-main {
    background-color: white;
    height: 100%;
}

.inner-wrapper {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
    flex-direction: column;
}

.site-main p {
    line-height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 7rem;
}

.link {
    color: white;
    padding: 1rem 2rem;
    border: 3px solid white;
    display: flex;
    background-color: #000c48;
    justify-content: center;
    text-decoration: none;
    transition: all .2s;
}

.link:hover {
    color: #FA0169;
    border-color: #FA0169
}

.button-container {
    display: flex;
    flex-direction: column;
}

.button {
    color: #000c48;
    padding: 1rem 2rem;
    border: 3px solid #000c48;
    display: flex;
    background-color: white;
    justify-content: center;
    text-decoration: none;
    transition: all .2s;
    margin: 0.5rem;
    align-self: center;
    width: 100%;
}

.button:hover {
    color: #FA0169;
    border-color: #FA0169
}

@media (min-width: 910px) {
    .hero-banner {
        flex-direction: row;
    }

    .hero-banner--visual {
        order: 2
    }

    .hero-banner--content {
        order: 1;
        padding: 3rem;
    }

    .hero-banner--content img {
        width: 200px;
    }

    .inner-wrapper {
        padding: 12rem 1rem 5rem;
    }

    .picture {
        top: 80px;
    }

    .profile-photo {
        max-width: 100%;
    }

    .link {
        max-width: 270px;
    }

    .button {
        max-width: 320px;
    }
}