body {
    margin:0;
    font-family: 'Segoe UI';
}

/* LOADER */
#loader {
    position:fixed;
    width:100%;
    height:100%;
    background:#001f3f;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader-logo {
    width:90px;
    margin-bottom:10px;
}

/* HEADER */
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    background:#003366;
    color:white;
}

.logo {
    width: 100px;
    height: 100px; 
}
/* TITLE FUTURISTIC */
.title h1 {
    margin:0;
    font-size:22px;
    letter-spacing:2px;
    background:linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip:text;
    color:transparent;
}

.title p {
    margin:0;
    font-size:12px;
}

/* NAV */
nav a {
    margin:10px;
    color:white;
    text-decoration:none;
}

nav a:hover {
    color:yellow;
}

/* HERO */
.hero {
    text-align:center;
    padding:60px;
    background:#f4f4f4;
}

/* CARDS */
.cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

.card {
    background:#0072ff;
    color:white;
    margin:10px;
    padding:20px;
    border-radius:10px;
    width:150px;
    text-align:center;
}

/* EVENTS */
.event-box {
    background:#fff3cd;
    padding:20px;
    margin:20px;
}

/* GALLERY */
.gallery img {
    width:200px;
    margin:10px;
    border-radius:10px;
}

/* FOOTER */
footer {
    background:#222;
    color:white;
    text-align:center;
    padding:10px;
}

/* MOBILE */
@media(max-width:768px){
    header {
        flex-direction:column;
    }
}