@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ===== Global Styles ===== */
body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
}

h1 {
    text-align: left;
    color: #ffffff;
}

p {
    margin-bottom: 15px;
}

/* ===== Links ===== */
a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
}


/* ===== Article Container ===== */
.article {
    background-color: #000000;
    font-weight: 700;
    padding: 30px;
    border-radius: 8px;
    margin-left: 0;
    margin-right: auto;
    max-width: 900px;
}

/* ===== Headers ===== */
.sideA,
.sideB,
.sideC {
    color: #ffffff;
}

.sideA {
    text-align: left;
}

.sideB {
    text-align: right;
}

.sideC {
    text-align: right;
}
/* ===== Link Boxes ===== */
.heidisA,
.ariesB,
.ariesC {
    color: #000000;
    background-color: #ffffff;
    padding: 10px;
    transition: transform 0.2s ease, font-size 0.2s ease;
    font-weight: 600;
}

.heidisA {
    text-align: left;
    margin-right: 55%;
    transform-origin: left;
}

.ariesB {
    text-align: right;
    margin-left: 55%;
    transform-origin: right;
}

.ariesC {
    text-align: center;
    margin-top: 20px;
}

.heidisA:hover {
    transform: scaleX(1.05);
    font-size: 1.55em;
    background-color: #15dcff;
    color: #ffffff;
}
.ariesB:hover {
    transform: scaleX(1.05);
    font-size: 1.55em;
    background-color: #fa5b1b;
    color: #ffffff;
}

.ariesC:hover {
    transform: scaleX(1.05);
    font-size: 1.55em;
    background-color: #d4035c;
    color: #ffffff;
}

/* ===== Text Content ===== */
.text {
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    text-align: left;
    font-weight: 500;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== Final Text ===== */
.final {
    text-align: center;
    color: rgb(44, 62, 80);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 600px) {
    .heidisA,
    .ariesB,
    .ariesC {
        margin-right: 0;
        margin-left: 0;
        font-size: 1em;
    }
}

.holder {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.holder img {
    width: 100%;
    height: auto;
    display: block;
}

.bubble {
    max-width: 25%;
    margin: 20px auto;
    display: block;
    text-align: center;
}

.fantasy-hover {
    position: relative;
    cursor: pointer;
}

.fantasy-hover img {
        position: absolute;
        top: -500%;
        left: 0;
        width: 100%;
        display: none;
        z-index: 100;
        transition: transform 0.1s ease-out;
}

.fantasy-hover:hover img {
    display: block;
}

.forward {
    margin-left: 40px;
}

.text-l {
    text-align: center;
    margin-left: 0;
    margin-right: auto;
    max-width: 50%;
    /*padding-right: 100px;*/
}

.text-r {
    text-align: center;
    margin-left: auto;
    margin-right: 0;
    max-width: 50%;
    padding-left: 50%;
}

.footer {
    text-align: center;
    color: #343434;
}

/*FOOTER*/
.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.footer-links a {
    display: inline-flex;
}

.footer-links img {
    width: 50px;
    height: 50px;
}

/*.footer:hover {
    color: #ffffff;
}*/

.footer-links img {
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.footer-links a:hover img {
    filter: grayscale(0%);
}

