@import url("../colorPalettes/malibu.css");

body {
    background: url('/Assets/gifs/malibu/13.gif')center/cover fixed;
    image-rendering: crisp-edges; /* ? For the pixel art (where it's needed) */
}

main {
    background: var(--MALIBUwhite);
    border: 4px dotted var(--MALIBUblue);
    outline: none;
    border-radius: 60px;
    box-shadow: 6px 6px 0 var(--MALIBUyellow), -6px -6px 0 var(--MALIBUpink1);

    position: relative;

}

main::before {
    content: "";
    position: absolute;
    bottom: -5em;
    left: -4em;

    width: 200px;
    height: 200px;
    background: url(/Assets/aesthetics/malibu/pngs/realHibiscus1.png) center/contain no-repeat;
    z-index: 20;

    pointer-events: none;
    image-rendering: auto;
}

main::after {
    content: "";
    position: absolute;
    top: -5em;
    right: -4em;

    transform: scaleX(-1);

    width: 200px;
    height: 200px;
    background: url(/Assets/aesthetics/malibu/pngs/realHibiscus2.png) center/contain no-repeat;
    filter: brightness(1.1) contrast(1.2);

    z-index: 20;

    pointer-events: none;
    image-rendering: auto;
}

.detailing {
    background: url(/Assets/pixels/other/bowDividerYellow.gif) repeat-x;
}

ipromisedyouarose {
    image-rendering: auto;
}

#warnings {
    background-color: var(--MALIBUsand);
    border: 4px dotted var(--MALIBUpink1);

    image-rendering: auto;
}

.warningIMGs {
    border-bottom: 2px solid var(--MALIBUgreen);
}

#icon-tooltip {
    background: var(--MALIBUpink2);
    color: black;
    border: 1px solid var(--MALIBUblue);
}

#disclaimer {
    background: var(--MALIBUblue);
    border: 4px dotted var(--MALIBUsand);
    border-top: none;
}

#disclaimer a {
    color: var(--MALIBUpink1);
}

strong {
    color: var(--MALIBUpink1);
    font-weight: normal;
}

#enter {
    color: var(--MALIBUpink1);
}

#enter:hover {
    color: var(--MALIBUorange);
}