<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'DMsans';
    src: url('fonts/DMsans.ttf') format('truetype');

    font-family: 'Lora';
    src: url('fonts/Lora.ttf') format('truetype');

    font-family: 'Playfair';
    src: url('fonts/Playfair.ttf') format('truetype');
}

body {
    font-family: 'DMsans', sans-serif;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('resources/background.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(15px);
}

.scrolling-bar {
    font-family: 'Lora', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(37, 33, 49,0.7);
    color: #cccbce;
    padding: 2px;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.scrolling-bar p {
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

#college-logo, #club-logo{
    position: sticky;
    left: 12px;
    top: 25px;
    height: 50px;
}


nav {
    position: relative;
    top: 25px;
    z-index: 100;
    margin: 10px;
}

nav ul{
    list-style-type: none;
    padding: 10px 10px;
    display: flex;
    justify-content: space-around;
    background-color: rgba(37, 33, 49,0.7);
    color: #fff;
    border-radius: 10px; 
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}


li{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a{
    font-family: 'DMsans', sans-serif;
    color: #95939A;
    text-decoration: none;
    background-color: rgba(37, 33, 49,0.7);
    margin: auto;
    padding: 10px 20px;
    border-radius: 5px;
    backdrop-filter: blur(20px);
}

nav ul li a:hover {
    color: #483a58;
    background-color: rgba(37, 33, 49,0.7);
    margin: auto;
    padding: 10px 20px;
    border-radius: 5px;
    backdrop-filter: blur(20px);
}

nav ul li a:active {
    background-color: #483a58;
    color: #000;
}

#menu {
    display: none;
}

#menuToggle {
    display: none; 
    position: relative; 
    top: 5px;
    left: 3px; 
}
#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; 
    z-index: 2;
}

#menuToggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #95939A;
    background-color: #2e2a3e;
    border-radius: 2px;
    z-index: 1;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menuToggle input:checked ~ ul{
    display: block;
}

#menuToggle input:checked ~ li {
    padding: 100px 0;
}

@media (max-width: 600px) {

    #menuToggle {
        display: block;
    }

    .navm {
        display: none;
    }
}

header {
    font-family: 'Playfair', 'Lora';
    text-align: center;
    animation: fadeIn 2s ease-in-out;header {
    background-image: url('resources/background.gif');
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    height: 100vh;
}
}

@media (max-width: 600px) {
    .header-content {
        font-size: 0.65em;
        padding: 20px;
    }

    .text-content {
        max-width: 30%;
    }

    .text-content h1 {
        max-width: 100%;
    }

    .ai-logo {
        max-height: 50vh; 
        max-width: 40%; 
        padding: 2em;
        margin-right: 7.5%;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    height: 100vh;
    box-sizing: border-box;
    margin-left: 7.5%;
}

.text-content {
    max-width: 40%;
}

.text-content h1 {
    font-weight: bold;
    font-size: 3em;
    color: #95939A;
}

.text-content p {
    font-size: 1em;
    color: #95939A;
}

.button-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
    padding: auto;

}

.ai-logo {
    max-height: 50vh; 
    max-width: 45%; 
    padding: 2em;
    margin-right: 7.5%;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    backdrop-filter: blur(20px); 
}

.social-button {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 50px 20px 0 20px;
    border-radius: 10%; 
    color: #fff;
    background: rgba(37, 33, 49,0.7); 
    text-decoration: none;
    transition: background 0.3s ease;
    animation: fade 2s infinite;
    margin-bottom: 50px;
}

.social-button:hover {
    background: rgba(0, 0, 0, 0.8); 
}

.social-button i {
    font-size: 20px;
}

@media (max-width: 600px) {
    .social-button img{
        width: 20px !important;
        height: 20px !important;
    }
    .social-button {
        width: 10px;
        height: 20px;
        margin: 30px 10px 30px 10px;
    }
}

.social-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fade {
    0% {opacity: 1;}
    50% {opacity: 0.5;}
    100% {opacity: 1;}
}

@media (max-width: 600px) {
    .upcoming-event h2 {
        font-size: 0.8em;
    }
    .upcoming-event p{
        font-size: 0.3em;
    }
}

.upcoming-event {
    font-family: 'Playfair', 'Lora';
    font-size: 2em;
    margin-top: 10px;
    padding: 10px;
    color:#95939A;
    margin-top: 20px;
    margin-bottom: 50px;
    border-radius: 15px;
    margin: 10px;
    background-image: radial-gradient(circle, #483a58, #2e2a3e);
    backdrop-filter: blur(20px);
    background-size: cover;
    background-position: center;
}

.upcoming-event p {
    font-size: 0.5em;
    color: #95939A;
    margin-left: 30px;
    margin-right: 30px;
    max-width: 40;
}

@media (max-width: 600px) {
    .events-tab {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .event-card h3{
        font-size: 0.8em;
    }
}

.events-tab {
    font-family: 'Playfair', 'Lora';
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    color: #95939A;
    margin-top: 2em;
    padding: 10px;
    background-image: radial-gradient(circle, #483a58, #2e2a3e);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    margin: 10px;
    align-items: center;
}

.event-card {
    border: 3px solid rgba(37, 33, 49, 0.9);
    backdrop-filter: blur(50px);
    padding-left: 20px;
    margin: 10px;
    transition: transform .5s;
}


.events-tab .event-card img {
    position: relative;
    width: 90%; 
    height: 90%;
    max-width: 300px;
    object-fit: cover;
}

.event-card:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    footer {
        font-size: 0.7em;
        height: 300px;
        padding: 20px;
    }
}
footer {
    font-family: 'DMsans', sans-serif;
    justify-content: center;
    flex-direction: column;
    gap:100px;
    bottom: 0;
    font-family: 'DMsans', sans-serif;
    width: 100%;
    height: 200px;
    padding: 15px;
    background-image: radial-gradient(circle, #483a58, #2e2a3e);
    color: #95939A;
    border-radius: 0px; 
    backdrop-filter: blur(20px);
    margin: 10px 0;
}

footer p {
    display: block;
    margin: 10px 0;
}

.social-button-foot img{
    object-fit: contain;
    opacity: 0.6; 
    position: relative;
    width: 30px;
    height: 30px;
}

.social-button-foot a {
    background: none !important; 
}</pre></body></html>