:root {
    --red: #E63946;
    --black: #202124;
    --white: #F4F4F9;
    --text-color: #2c3e50;

    --margin: 16px;
    --padding: 16px;
    --border-radius: 8px;
}

/* Base Styles */
body {
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    min-height: 400vh;
}

img {
    max-width: 100%;
    position: relative;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

#main {
    margin-top: 50px;
}

#main .flex {
    justify-content: space-between;
}

.article {
    display: flex;
    gap: 10px;
}

/* Components */
.under-image {
    justify-content: space-between;
    align-items: center;
    padding: var(--padding);
    background-color: var(--white);
}

.tag {
    color: var(--black);
    border-radius: var(--border-radius);
    display: inline-block;
    padding: var(--padding);
    border: 1px solid black;
    cursor: pointer;
    text-transform: uppercase;
}

.tag:hover {
    background-color: var(--red);
    color: var(--white);
}

.top-bar {
    margin-top: 15px;
}

.link, a {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

a:hover, .link:hover {
    color: var(--red);
    text-decoration: line-through;
}

.t-b-borders {
    padding: var(--padding);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.logo {
    text-align: center;
    padding: 30px 0;
}

nav .flex {
    display: flex;
    justify-content: center;
}

.img-container {
    margin-top: 40px;
    background-image: url('../imgs/bg_image.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-width: 100%;
    min-height: 550px;
    position: relative;
}

.live {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.live span {
    display: inline-block;
    padding: 5px;
    background-color: var(--red);
    border-radius: 50%;
    margin-right: 5px;
    animation-timing-function: ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    animation: livepulse 1s infinite;
}

.live span:hover {
    animation: none;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@keyframes livepulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Utility Classes */
.flex {
    display: flex;
    gap: 10px;
}

.flex-v {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex-h {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



