/* Header Section */

.header_section {
    background-color: var(--primary_colour);
    min-height: 400px;
}

.header_section h2 {
    font-size: 48px;
    color: var(--accent_colour);
    font-weight: 600;
}

.header_section .content {
    text-align: right;
    align-items: flex-end;
}

.header_section #header_intro {
    max-width: 500px;
}

@media only screen and (max-width: 865px) {
    .header_section h2 {
        font-size: 38px;
    }

    .header_section .content {
        text-align: center;
        align-items: center;
    }
}


/* Socials Section */

.socials_section {
    min-height: 60px;
    gap: 40px;
}

.socials_section h2 {
    font-weight: 600;
    color: var(--accent_colour)
}

.socials_section .socials {
    display: flex;
    gap: 20px;
}

.socials_section .socials a {
    line-height: 1px;
    vertical-align: bottom;
}

.socials_section .socials img {
    height: 48px;
    width: 48px;
}

@media only screen and (max-width: 865px) {
    .socials_section {
        gap: 20px;
    }

    .socials_section h2 {
        font-size: 26px;
    }
}


/* About Section */

.about_section {
    background-color: var(--primary_colour);
    min-height: 400px;
}

.about_section h2 {
    color: var(--accent_colour);
    font-weight: 600;
    font-size: 36px;
}

.about_section .content {
    max-width: 600px;
}

.about_section img {
    height: 350px;
    width: 400px;
    object-position: top;
}

@media only screen and (max-width: 865px) {
    .about_section img {
        width: 100%;
    }
}