:root {
    --root-3: 1.7320508076;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--hex-green);
    min-height: 100vh;
    margin: 0;
}

body, a {
    font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		"Open Sans",
		"Helvetica Neue",
		sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #fff;
}

main {
    width: fit-content;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    font-weight: 200;
    font-size: 4rem;
}

.logo-container {
    width: 40vw;
    height: fit-content;
    margin-bottom: 1rem;
}

.logo-container img {
    width: 100%;
    height: auto;
}

@media (orientation: landscape) {
    .logo-container {
        width: fit-content;
        height: calc(40vh * 2 / var(--root-3));
    }

    .logo-container img {
        width: auto;
        height: 100%;
    }
}
