@import url("/css/general/globals.css");

@font-face {
    font-family: Femme;
    src: url('/fonts/FEMMEF.ttf');
}

@font-face {
    font-family: peach;
    src: url('/fonts/peachsundress.ttf');
}

/* Layout */
body {
    margin: 0;
    padding: 0;
    height: 100vh;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

    color: black;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    background-color: black;
    background: url('/assets/backgrounds/roses.gif');
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


main {
    position: relative;
    display: flex;
    width: 1000px;
    height: 400px;
    padding: 10px;
    gap: 20px;
    background-color: #f8c9c9;
    background-clip: padding-box;
    z-index: 1;
}

.leftside {
    display: flex;
    flex-flow: column nowrap;
    flex: 0 1 200px;
}

section {
    padding: 10px;
    flex: 1 1 600px;
    overflow: auto;
}

.icon {
    width: 90%;
    display: block;
    height: auto;
}

.details {
    padding: 10px;
    overflow: auto;
    border-right: 2px solid black;
}

/* General Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1 {
    font-family: Femme;
    font-size: 3em;
    border-bottom: 2px solid black;
}

h3 {
    font-size: 1.7em;
    margin: 6px 0;
    font-family: peach;
}

h4 {
    font-size: 1.4em;
    margin: 6px 0;
    font-family: peach;
}

p {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #ff6868;
    transition: 0.3s color;
}

a:hover {
    color: #c53838;
}

mark {
    background-color: #b82a2a;
    color: white;
}

::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
}

::selection {
    background: #b82a2a;
    color: white;
}

::-moz-selection {
    background: #b82a2a;
    color: white;
}

hr {
    background-image: url("/assets/pixels/dividers/chainborder.webp");
    background-size: 50%;
    background-repeat: repeat-x;
    width: 100%;
    height: 20px;
    margin-top: 10px;
    border: none;
}

/* Other */

.bLace {
    border-style: solid;
    border-width: 10px;
    border-image: url("/assets/borders/blacklace-Solaria.png") 14 round;
}

.rLace {
    border-style: solid;
    border-width: 10px;
    border-image: url("/assets/borders/redlace-SolariaE.png") 14 round;
}

#MoxienMillie {
    position: absolute;
    bottom: -20%;
    right: -30%;
    width: 400px;
    height: auto;

    -webkit-filter: drop-shadow(3px 3px 0 #ffffff) drop-shadow(-3px -3px 0 #818181);
    filter: drop-shadow(3px 3px 0 #818181) drop-shadow(-3px -3px 0 #ffffff);
}

#back {
    align-self: flex-start;
}

/* Start https://www.cursors-4u.com */
* {
    cursor: url("https://cur.cursors-4u.net/nature/nat-8/nat791.cur"), auto !important;
}

/* End https://www.cursors-4u.com */

@media (prefers-reduced-motion: reduce) {
    hr {
        background-image: url("/assets/pixels/dividers/chainborderF.png");
    }
}

@media only screen and (max-width: 950px) {
    body {
        height: unset;
        justify-content: center;
        align-items: unset;
    }

    main {
        flex-flow: column nowrap;
        width: auto;
        height: auto;
    }

    #MoxienMillie {
        display: none;
    }
}