@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-primary);
}

a {
    display: block;
    text-decoration: none;
}

span {
    display: inline-block;
}

img {
    max-width: 100%;
    object-fit: cover;
    max-height: 600px;
}

video {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    background-color: #7E7E7E;
}

ul {
    list-style-type: none;
}

.isis-barahona-svg {
    width: 100%;
}

:root {
    /* Spacing */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-28: 28px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-56: 56px;
    --space-64: 64px;
    --space-72: 72px;
    --space-80: 80px;
    --space-88: 88px;
    --space-92: 92px;
    --space-124: 124px;
    --space-128: 128px;
    --space-140: 140px;
    --space-200: 200px;

    /* Colors */
    --background-primary: #F2F2F2;
    --text-primary: #0C0B0B;
    --text-secondary: #7E7E7E;
    --text-tertiary: #E5201C;
    --text-quaternary: #F2F2F2;
    --border-primary: #0C0B0B;

    /* Font */
    --font-family: "Google Sans Flex", sans-serif;
}

.max-w-900 {
    max-width: 900px;
}

/* Background */
.background-primary {
    background-color: var(--background-primary);
}

/* Text */
.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-tertiary {
    color: var(--text-tertiary);
}

.text-quaternary {
    color: var(--text-quaternary);
}

/* Typography */
.font-h1 {
    font-family: var(--font-family);
    font-size: 40px;
    font-weight: 500;
    line-height: 44px;
}

.font-h1-1 {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
}

.font-h2 {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
}

.font-h3 {
    font-family: var(--font-family);
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
}

.font-headline {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
}

.font-body {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
}

.font-body-link {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
}

.font-caption {
    font-family: var(--font-family);
    font-size: 8px;
    font-weight: 500;
}

.font-button {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* Other */
.primary-button {
    padding: 4px 20px;
    border-radius: 100px;
    border: 1px solid var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    max-width: fit-content;
    background-color: transparent;
}

.tag {
    padding: 0 12px;
    border: 1px solid var(--text-primary);
    border-radius: 24px;
    max-width: fit-content;
}

.project-tag {
    padding: 4px 12px;
    border: 1px solid var(--text-primary);
    border-radius: 24px;
    max-width: fit-content;
}

.line {
    height: 1px;
    width: 100%;
    background-color: var(--border-primary);
}

.relative {
    position: relative;
}

/* Header */
.header {
    backdrop-filter: blur(8px);
    padding: var(--space-12);
    border-radius: 80px;
    position: fixed;
    top: 56px;
    left: 40px;
    right: 40px;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: var(--space-8);
}

.footer {
    padding: 80px 0px 22px 0px;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
}

.footer__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.footer__link {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
	.font-h1 {
		font-size: 64px;
		line-height: 72px;
	}

	.font-h1-1 {
		font-size: 64px;
		line-height: 72px;
	}

	.font-h2 {
		font-size: 36px;
		line-height: 44px;
	}

	.font-h3 {
		font-size: 19px;
		line-height: 24px;
	}

	.font-headline {
		font-size: 16px;
		line-height: 24px;
	}

	.font-body {
		font-size: 16px;
		line-height: 24px;
	}

	.font-body-link {
		font-size: 16px;
		line-height: 24px;
	}

	.font-caption {
		font-size: 10px;
		line-height: 12.5px;
	}

	.font-button {
		font-size: 16px;
		line-height: 24px;
	}

	.header {
		left: 64px;
		right: 64px;
	}

    .nav__list {
        gap: 24px;
    }

	.footer {
		padding: 40px 80px;
	}

	.footer__list {
		gap: 32px;
	}
}

@media (min-width: 1024px) {
	.header {
		left: 128px;
		right: 128px;
	}
}