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; /* Stack elements vertically */
    justify-content: center; /* Vertically center the text */
    align-items: center; /* Align text to the center */
    color: white;
}

.main-text {
    font-size: 2em;
}

.text-group {
    display: flex;
    gap: 10px; /* Space between text items */
}

.text-item {
    font-size: 1.5em;
    text-decoration: underline;
}

.contribute{
    padding-top: 10px;
}

.contribute button{
    background-color: #F4C2C2;
    border-radius: 10px;
    border-width: 0px;
    padding: 10px;
}

.contribute a{
    font-size: 2em;
    text-decoration: none;
    padding: 10px;
}

.banner{
    width: 100%;
    height: 50vh; 
        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; /* Stack elements vertically */
        justify-content: center; /* Vertically center the text */
        align-items: flex-start; /* Align text to the left */
    
}

.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: #F4C2C2;
    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; /* Responsive size */
}

.rune{
    font-family: runes;
    color: white; 
    font-size: 8vh; /* Responsive size */
}

.text-shadow{
    text-shadow: 0px 0px 80px rgba(0, 0, 0, 1); /* Larger, diffused shadow */
}

/* container */
.responsive-two-column-grid {
    display:block;
}

/* columns */
.responsive-two-column-grid > * {
    padding:5%;
}

/* tablet breakpoint */
@media (min-width:768px) {
    .responsive-two-column-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .responsive-two-column-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-text a {
        text-align: center;
    }
}

.footer-text p{
    padding-top: 10px;
}