import Meta from '@hackclub/meta' import Head from 'next/head' import { Box, Heading, Container, Text, Button, Link } from 'theme-ui' import Nav from '../components/nav' import styled from '@emotion/styled' import Footer from '../components/footer' import NextLink from 'next/link' const Header = styled(Box)` color: white; background-image: linear-gradient( 32deg, rgb(207, 45, 228) 0%, rgb(228, 45, 66) 64%, rgb(206, 41, 60) 100% ); clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 90%); > div { position: relative; } ` const Seal = styled(Box)` border-radius: 9999px; background-color: white; color: black; mix-blend-mode: screen; text-align: center; width: 12rem; height: 12rem; position: absolute; margin-top: -1rem; transform: rotate(4deg); @media screen and (min-width: 32em) { transform: rotate(3deg); margin-top: -3rem; } ` const Ultraline = styled(Heading)` line-height: 1.125 !important; text-transform: uppercase; color: 'white'; caps: true; &:nth-of-type(2) { padding-left: 1.5rem; @media screen and (min-width: 48em) { padding-left: 6rem; } } &:nth-of-type(3) { text-align: center; } &:nth-of-type(4) { text-align: right; position: relative; &:before { content: ''; position: absolute; clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); background-color: rgba(252, 252, 252, 0.625); mix-blend-mode: overlay; right: -0.5rem; width: 9.5rem; height: 2.5rem; @media screen and (min-width: 32em) { width: 20rem; height: 5.5rem; } } } ` Ultraline.defaultProps = { sx: { fontSize: [48, 54, 72, 96] } } const Row = styled(Container)` px: 3; py: [4, 5]; color: 'black'; display: grid; text-align: left; h2 { line-height: 1; margin-bottom: 18px; } @media screen and (min-width: 48em) { grid-gap: 24px; grid-template-columns: 2fr 3fr; } ` Row.defaultProps = { sx: { px: 3, py: [3, 4], color: 'black' } } const Super = styled(Text)` background-color: rgb(228, 115, 45); clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%); color: rgb(255, 255, 255); display: inline-block; padding-bottom: 12px; padding-left: 18px; padding-right: 18px; ` export default function Philosophy() { return (