@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* why is this all here hahaha */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
    font-family: inter;
}

a{
    color: white;
}

a:visited{
    color:white;
}

.main-banner {
    width: 100%;
    height: 100vh; 
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5)100%), 
    url('/assets/img/cringe.png'); 
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover;
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    color: white;
}

.main-text {
    font-size: 2em;
}

.text-group {
    display: flex;
    gap: 10px; 
}

.text-item {
    font-size: 1.5em;
    text-decoration: underline;
}

.contribute{
    padding-top: 10px;
}

.contribute button{
    background-color: var(--pink-color);
    border-radius: 10px;
    border-width: 0px;
    padding: 10px;
}

.contribute a{
    font-size: 2em;
    text-decoration: none;
    padding: 10px;
}

.banner{
    width: 100%;
    height: 30vh; 
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%), 
        url('/assets/img/cringe.png'); 
        background-repeat: no-repeat;
        background-position: center; 
        background-size: cover;
        display: flex; 
        flex-direction: column;
        justify-content: center; 
        align-items: flex-start;
}

.margin-left{
    margin-left: 5%;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th, .table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.table th {
    background-color: var(--pink-color);
    font-weight: bold;
    color: white;
}

.table td a {
    color: #007BFF;
    text-decoration: none;
}

.table td a:hover {
    text-decoration: underline;
}

@font-face {
    font-family: 'runes';
    src: url('/assets/font/runes.ttf') format('truetype');
}

.banner-text{
    color: white; 
    font-size: 6vh; 
}

.rune{
    font-family: runes;
    color: white; 
    font-size: 8vh; 
}

.text-shadow{
    text-shadow: 0px 0px 80px rgba(0, 0, 0, 1);
}


.footer-section {
    display: inline;
}


.footer-section > * {
    padding:5%;
}


@media (min-width:768px) {
    .footer-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: left;
    }
    .footer-text a {
        text-align: center;
    }
}

.footer-text {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-text p {
    padding: 0;
    margin: 0;
    display: inline;
}

.footer-logo {
    text-align: center;
}

/* above is whatever kal is doing, below is contribute.html, 
yes i could divide css but lazy
 */
:root {
 --pink-color: #F4C2C2;
}
.contribute-container {
	padding: 50px 20px;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #f9f9f9;
	justify-content: center;
	gap: 30px;
    background-color: #fff5f5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F4C2C2' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative; 
    overflow: hidden;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.page-subtitle {
    margin-bottom: 40px;
    color: #666;
}


.org-level {
    display: flex;
    justify-content: center;
    gap: 40px; 
    width: 100%;
    flex-wrap: wrap;
    z-index: 2;
}


.org-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 25px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: black;
    }
    p {
        font-size: 0.9rem;
        color: #777;
        margin-bottom: 15px;
    }
}

.org-card:hover {
    transform: translateY(-5px);
}

.org-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--pink-color);
}

.org-card a {
    color: white;
    background-color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
}

.org-card a:hover {
    background-color: var(--pink-color);
}
.contribute-lol {
    gap: 10px;
}
.bigasskiyo {
	position: absolute;
	right: 0;
	height: 100%;
	object-fit: contain;
	z-index: 1;
	opacity: 0.3;
}