/* ---------------- */
/* Reset            */
/* ---------------- */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
    margin: 0;
}

/* standard font-weight */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: 200;
}

/* ---------------- */
/* General styles   */
/* ---------------- */
* {
    font-family: 'IBMPlexSans', serif;
}

html {
    overflow-x: hidden;
    height: 100%;
}

/* set up the body */
body {
    font-weight: 200;
    line-height: 1.5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}

/* reset list elements */
ul,li {
    padding: 0;
    margin:0;
    color: inherit;
}

li {
    list-style: none;
}

/* links */
a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

/* headings */
h1 {
    font-size: 3.125rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
}

h2 {
    font-size: 2.25rem;
}


body {
    padding: 4rem 2rem 1rem 2rem;
}

@media only screen and (max-width: 758px) {
    body {
        text-align: center;
    }
}

header > section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 758px) {
    header > section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding-bottom: 2rem;
    }
}

.logo-wrapper {
    width: 9rem;
    height: 4.5625rem;
}

main {
    flex: 1 0 auto;
    display: flex;
}

@media only screen and (max-width: 1182px) {
    main {
        flex-direction: column;
    }
} 

.information {
    font-size: 1.5rem;
    flex-basis: 35%;
}

.information article {
    padding-top: 2rem;
}

.information p {
    padding-bottom: 1.5rem;
}

.insta-logo-wrapper {
    display: flex;
    gap: 1rem;
}

@media only screen and (max-width: 758px) {
    .insta-logo-wrapper {
        justify-content: center;
    }
}

.insta-logo {
    max-width: 2rem;
    max-height: 2rem;
}

.showcase {
    display: flex;
    flex-basis: 65%;
    padding-left: 4rem;
}

@media only screen and (max-width: 1182px) {
    .showcase {
        padding: 0;
    }
}

@media only screen and (max-width: 1182px) {
    .showcase {
        display: flex;
        flex-direction: column;
    }    
}


.image-wrapper {
    padding: 2rem;
}


.first-image {
    margin-top: -8rem;
}

@media only screen and (max-width: 1182px) {
    .first-image {
        margin-top: 0rem;
    }
}

@media only screen and (max-width: 758px) {
    .first-image {
        margin-top: 0;
    }
}

.second-image {
    padding-top: 16rem;
}

@media only screen and (max-width: 758px)  {
    .second-image {
        padding-top: 2rem;
    }
}

footer {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

@media only screen and (max-width: 758px) {
    footer {
        min-height: 4rem;
    }

    footer > ul {
        gap: 1rem;
    }
}

footer > ul {
    display: flex;
    gap: 2rem;
}

.breadcrump {
    padding-top: 1rem;
}

.breadcrump:hover {
    cursor: pointer;
}

