:root {
    /*image backgrounds*/
    --bg-img: url(images/ponyville_day.png);
    /*color backgrounds*/
    --content-bg: rgba(248, 248, 248, 0.80);
    /*borders*/
    --border: 4px solid #c1efe9;
    --border-rad: 15px;
    /*text colors*/
    --main-color: #fdfdfd;
    --links: #f394fa;
    --txt-shadow: 1px 1px 3px black;
    /*margins and paddings*/
    --content-margin: 20px;
    --content-padding: 15px;
    --padding-div: 8px;
}

html {
    height: 100%;
}

* {
    box-sizing: border-box;
    cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat1008.ani), url(https://cur.cursors-4u.net/nature/nat-10/nat1008.gif), auto !important;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1c1c1c;
    box-shadow: inset 0 0 5px #444444;
}

::-webkit-scrollbar-thumb {
    background: #b2bfb8;
    box-shadow: inset 0 0 5px #170a32;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bfcdc5;
}

@font-face {
    font-family: "Equestria"; 
    src: url("fonts/equestria.otf") format("opentype");
}

@font-face {
    font-family: "Equestria"; 
    font-weight: bold;
    src: url("fonts/equestria-bold.otf") format("opentype");
}

@font-face {
    font-family: "Equestria"; 
    font-style: italic;
    src: url("fonts/equestria-italic.otf") format("opentype");
}

body {
    background: #eca0d7;
    background: var(--bg-img) no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    color: var(--main-color);
    font-family: serif;
    font-size: 18px;
    text-shadow: var(--txt-shadow);
}

a {
    color: var(--links);
    text-shadow: none;
}

a:hover {
    font-style: italic;
    cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat1010.ani), url(https://cur.cursors-4u.net/nature/nat-10/nat1010.gif), auto !important;
}

h1 {
    font-family: 'Equestria';
}

.row {
    display: flex;
    margin: 40px;
}

.row:after {
    content: "";
    display: block;
    clear: both;
}

.subrow {
    margin: var(--content-margin);
}

.left {
    width: 40%;
    margin-right: var(--content-margin);
}

.right {
    width: 60%;
    margin: 0;
}

.content {
    background: var(--content-bg);
    border: var(--border);
    border-radius: var(--border-rad);
    padding: var(--content-padding);
    margin-bottom: var(--content-margin);
}

.absolute {
    width: 200px;
    position: absolute;
}

#glhf {
    font-size: 14px;
    font-style: italic;
}

.link img:hover {
    transform: rotate(-5deg) scale(1.2);
}

@media screen and (max-width: 1000px) {
    .row {   
        max-width: none;
        flex-direction: column;
        margin: none;
    }

    .left, .right {
        max-width: none;
        width: auto;
        margin: 0 var(--content-margin) 0;
    }
    .subrow {
        max-width: none;
        margin: var(--content-margin);
    }
    .content {
        max-height: none;
    }
    .longest, .home, .long, .footer {
        height: auto;
    }
    .siggy {
        height: 75px;
        margin-top: var(--content-margin);
    }
    .absolute {
        display: none;
    }
}