@font-face {
  font-family: CookieMonster;
  src: url(Cookiemonster.ttf);
}

/* global */
* {
    font-family: monospace;
    cursor: url(https://64.media.tumblr.com/944a0abc7ef096acd29ddf29e1894969/25c2207280490ab6-da/s75x75_c1/e4bda17eefb34dcb8cf7f8a485ab6ab37b8dc869.gifv),
     url(https://64.media.tumblr.com/d4a50c1b4d90a1eccf75ccca47199961/b261dfe74ba3f797-4e/s250x250_c1/b8ad33e140c516f3c0960a2572806ef066ef50d0.gifv), auto !important;
    box-sizing: border-box;
}

body {
    background-color: #e3e3e3;
    background: url(https://i.pinimg.com/originals/6d/a3/59/6da359186ef0cabbc4b71d909cacd877.gif);
    background-size: cover;
    font-family: CookieMonster, arial, sans-serif, helvetica;
}

body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgb(82 15 15 / 48%) 50%, rgb(0 0 0 / 0%) 50%);
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

div {
    display: block;
    unicode-bidi: isolate;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 10px;
}

/* header */
header {
    text-align: center;
    font-size: 70%;
    margin: 10px 0 10px;
    padding: 5px 10px;
    background: url(https://64.media.tumblr.com/4ef363843eadaf4d22e813f4377586d0/5bbc5cd08fbcae95-9b/s500x750/4392091c5c59bb20616932eb6156d499f9037cca.gifv) #59001ea6;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-color: #ffc4d3;
}

header a:not(:last-child):after {
    content: " ☆ ";
    color: #c7044f;
}

a:link,
a:visited {
 color : #ff9cc1;
 font-size: 2.5em;
 text-shadow: 2px 2px 0.5px #ab2d2d;
}

/* main */
main {
    background: url(https://i.pinimg.com/736x/af/f3/85/aff385b95da99494289aceb86d9946f5.jpg)  #fceef4d4;
    padding: 6px 0px;
    font-size: 1.2em;
    background-size: cover;
    border: solid 3px #ff9fc9;
    box-shadow: 0px 0px 6px #a14b74;
}

main .left,
main .right {
    padding: 10px;
}

.heading {
    background: #ff7dae;
    color: #ffffff;
    padding: 4px 7px;
    border: 2px inset #ff6bb6;
}

.heading h4 {
    margin: 5px 0;
    font-size: 1.3em;
}

.inner {
    color: #cf3878de !important;
    background: #fff9fb;
    border: 3px inset #ffaad7;
    border-radius: 0px !important;
    box-shadow: 5px 8px #ffd1e3 !important;
    background-size: cover;
}

/* id cards */
.OC {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px;
}

.OC img {
    width: 100%;
    height: auto;
    border: solid 3px #ff9fc9;
    box-shadow: 0px 0px 6px #a14b74;
    border-radius: 10%;
}

/* footer */
footer {
    text-align: center;
    font-size: 120%;
    margin: 10px 0 10px;
    padding: 5px 5px;
    background: url(https://64.media.tumblr.com/4ef363843eadaf4d22e813f4377586d0/5bbc5cd08fbcae95-9b/s500x750/4392091c5c59bb20616932eb6156d499f9037cca.gifv) #59001ea6;
    background-size: 800px;
    background-position: center;
    background-blend-mode: soft-light;
    background-color: #ffc4d3;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    header {
        font-size: 60%;
    }
    a:link, a:visited {
        font-size: 2em;
    }
    main {
        font-size: 1em;
    }
    .OC {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    header {
        font-size: 50%;
    }
    a:link, a:visited {
        font-size: 1.5em;
    }
    footer {
        font-size: 100%;
    }
}