/* extra parameters for this page on content container */
.content-container {
    min-height: 77dvh;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
}

/* text container */
.header {
    width: 50%;
    height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin: 0;
}

.header span {
    font-size: 1.2rem;
    font-weight: 400;
}

/* colourful text */
.header h1 {
    font-size: 4rem;
    font-weight: 600;
}

/* hero image */
.image-container {
    height: 100%;
    width: 50%;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    height: 25rem;
    width: 25rem;
    margin: -2rem 0;
    border-radius: 50%;
}

/* Smaller screen */
@media (max-width: 970px) {
    .header {
        height: 20rem;
    }

    .header span {
        font-size: 1rem;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .image-container img {
        height: 20rem;
        width: 20rem;
    }
}

/* Small screen */
@media (max-width: 700px) {
    .content-container {
        width: 100%;
        margin: 0;
        flex-direction: column-reverse;
    }

    .header {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
        margin: -2rem 0 0 0;
    }

    .image-container {
        width: 100%;
        align-items: flex-end;
    }

    .image-container img {
        height: 12rem;
        width: 12rem;
    }
}
