@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
	--base-color: #000000;
	--text-color: #ffffff;
	--primary-color: #B400F5;
	--secondary-color: #F5A800;
	--color-1: #1f1f1f;
	--color-2: #F3F7F9;
	--color-3: #F6F3F9;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: var(--text-color)

}

body {
	padding: 1em;
	background-color: var(--base-color);
}

h1, h2, h3 {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav {
    margin: 1em 0 3em 0;
    width: 100%;
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 2em;
    padding: 0; 
}

nav li:first-child {
	margin-right: auto;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-weight: bold;
}

nav a {
	text-decoration: none;
	color: var(--text-color)
}

nav a:hover {
	text-decoration: underline;
}

header, section {
	margin: 2em auto;
	width: min(75em, 100%);
	background-color: var(--color-1);
	padding: min(2em, 15%);
	border-radius: 1em;
}

.flex-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 3em;
}

header img {
	max-width: 100%;
	border-radius: 1em;
	object-fit: cover;
	object-position: bottom;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    flex: 0 1 34em;
}

.text-container a:not(.cta-button) {
    color: var(--text-color);
	font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

h1 {
	font-size: 2.5rem;
}

.text-container {
	margin: .75em 0 1em 0;
	font-size: 1.25rem;
}

.cta-button {
	display: inline-block;
	text-decoration: none;
	color: white;
	background-color: var(--primary-color);
	padding: .75em 1.25em;
	border-radius: .5em;
	font-weight: 600;
}

.secondary {
	background-color: var(--secondary-color);
}