*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: "Inter", sans-serif;
    display: flex;
    padding: 12px;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* LOGO */
.logo-wrap {
    width: 100%;
}

/* MAIN CONTENT AREA */
.main {
    display: grid;
    grid-template-columns: 55% minmax(200px, 1fr);
    padding: 135px 10px;
    gap: 40px;
}

.image img, .tagline img {
    width: 100%;
    height: auto;
}

.contact {
    display: block;
    margin: 0 auto;
    width: auto;
    text-align: left;
    flex-shrink: 0;
    letter-spacing: 2px;
}

.contact h2 {
    margin-bottom: 22px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
}

.contact a,
.contact p {
    display: block;
    font-weight: 400;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
}

.contact a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact a:hover {
    opacity: 0.7;
}

/* FOOTER */
footer {
    padding: 10px;
    margin-top: auto;
}

footer p {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .logo-wrap {
        margin-bottom: 80px;
    }
    .main {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 80px;
        padding: 10px;
    }

    .tagline {
        width: 100%;
    }

    .contact {
        text-align: left;
        margin: 0;
    }
}