@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background: url('/assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #0a001f;
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 31, 0.85);
    z-index: -1;
}

header {
    background: linear-gradient(90deg, #ff00ff, #7700ff);
    padding: 20px;
    text-shadow: 0px 0px 10px #ff00ff;
}

.events {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.event-card {
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid #ff00ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ff00ff;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.event-card:hover {
    background: rgba(255, 0, 255, 0.5);
    transform: scale(1.05);
}

footer {
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(90deg, #7700ff, #ff00ff);
    color: #ffffff;
}

/* Ensure all text inside posts is white */
p, a {
    color: #ffffff;
}

/* Heading sizes */
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}

/* Resize images to fit within the post layout */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 0, 255, 0.5);
}
