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

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/* Custom */

:root {
    --bg: #0E0E0E;
    --text: #FFFFFF;
    --text-hover: #D0D0D0;
}

body {
    font-family: Kanit, sans-serif;
    font-weight: 300;
    background-color: var(--bg);
    color: var(--text);
    font-size: 1.2rem;
}

h1, h2 {
    font-family: Raleway, sans-serif;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: 3rem;
}

a, a:visited {
    text-decoration: none;
    color: var(--text);
}

a:hover {
    color: var(--text-hover);
}

header {
    position: relative;
    padding-top: 6rem;
}

.logo {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    min-width: 150px;
    max-width: 400px;
}

.hero-image::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 150% 75% at 50% 75%, #00000000 70%, var(--bg) 100%);
    pointer-events: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 4rem 0;
}

.container {
    max-width: 800px;
    padding: 0 1rem 0 1rem;
}

.flow {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.contact-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links, .contact-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

@media (max-width: 600px) {
    body {
        font-size: 1rem;
    }

    h1, h2 {
        font-size: 2rem;
    }

    .flow {
        gap: 3rem;
    }
}

@media (min-width: 600px) and (max-width: 1000px) {
    body {
        font-size: 1.1rem;
    }

    h1, h2 {
        font-size: 2.5rem;
    }

    .flow {
        gap: 4rem;
    }
}