@import url('https://fonts.googleapis.com/css?family=Cedarville+Cursive');
@import url('https://fonts.googleapis.com/css?family=Markazi+Text|Staatliches');
@import url('https://fonts.googleapis.com/css?family=Rasa');
@import url('https://fonts.googleapis.com/css?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css?family=Goudy+Bookletter+1911&display=swap');

@keyframes rainbow {to{filter:hue-rotate(360deg);}}
@keyframes blink {50% {opacity:0;}}
@keyframes roll {to {transform: rotate(360deg);}}

body {
    margin:0;
    width:100vw;
    height:100vh;
    background-color:#0d0602;
    background-image:url("images/textures/scribble.png");
    cursor:url("images/cursors/cat_smile.png"), auto;
    overflow:hidden;
    font-family: "Goudy Bookletter 1911", serif;
    text-transform: lowercase;
}

#header_div {
    transition: all 3s;
    animation: rainbow 20s infinite;
}

#logo_img {
    position:fixed;
    height:150vh;
    right:57vw;
    top:-13vh;
    filter:invert(100%);
    opacity:.5;
    animation: roll 60s ease infinite;
}


#logo_text {
    position:fixed;
    left:0vw;
    height:100vh;
    opacity:.6;
    transition:transform 5s linear;
}

#nav_div {
    position: absolute;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    left:47vw;
    right:2vw;
    top:5vh;
}

button {
    font-family:inherit;
    border:none;
    padding:.25em;
    flex-grow:1;
    background-color: #dd4bcc;
    background-image: url("images/textures/skulls.png");
    font-size:1.5em;
    font-weight:bold;
    color:#0d0602;
    transition: all 1s;
}

button:hover {
    filter:hue-rotate(270deg) contrast(200%);
    opacity:.5;
    color:#e0e0f9;
    cursor:url("images/cursors/cat_heart.png"), auto;
}

#section_name {
    text-shadow: 5px 3px #dd4bcc,
    -3px -5px #5482e6;
    text-align:right;
    position:absolute;
    left:47vw;
    right:6vw;
    top:13vh;
    color:#e0e0f9;
    font-size:1.8vw;
    font-weight:bold;
    z-index:10;
    animation: rainbow 5s infinite;
    
}

.content {
    visibility:hidden;
    opacity:0;
    position:absolute;
    height:50vh;
    left:47vw;
    right:2vw;
    top:20vh;
    bottom:15vh;
    /*width:45vw;*/
    padding-left:2vw;
    padding-right:2vw;
    padding-top:4vh;
    background-color:#e0e0f9;
    background-image:url("images/textures/xv.png");
    font-size:1.2em;
    overflow-y: scroll;
    scrollbar-color: rgba(0,0,0, .5) rgba(100,100,100,.5);
    scrollbar-width:thin;
    transition: opacity 1s, visibility 1s;
}

.content a {
    color:#dd4bcc;
    text-decoration:none;
    transition: all 1s linear;
}

.content a:hover {
    filter:hue-rotate(270deg) contrast(200%);
    cursor:url("images/cursors/cat_heart.png"), auto;
}

h4 {
    margin-top:1vh;
    margin-left:3vw;
    margin-bottom:1vh;
}

#gear_div li {
    margin:0;
}

ul {
    list-style:none;
    margin:0;
    padding:0;
}

.flower_bullet {
    height:3vh;
    margin-right:.25vw;
    vertical-align: top;
}

#services_div h5 {
    display:inline;
    font-size:1.25em;
}

#contact_div h5 {
    display:inline;
    font-size:1.25em;
}

#contact strong {}

#contact_div p {
    display:block;
    margin-left:4vw;
}

li {
    margin-bottom:1em;
    line-height:4.3vh;
}

#records_div iframe {
    display:inline-block;
    border:none;
    width: 12vw;
    height:12vw;
    margin-right:2vw;
    margin-bottom:2vh;
    transition: all 1s;
}

#photos_div img {
    width:15vw;
    transition: transform .5s;
}

#photos_div img:hover {
    transform: scale(1.2);
}

#settings_div a {
    display:block;
    font-weight:bold;
    font-size:1.5em;
    margin:0;
    padding:0;
}

/* FOOTER SHIT */
#footer_div {
    position:absolute;
    right: 2vw;
    bottom:3vh;
    left:47vw;

    color:#e0e0f9;
    font-size:1.8vw;
}

#footer_div p {
    display:block;
    margin:0;
}

#footer_div a {
    text-decoration:none;
    color:#dd4bcc;
    transition:all 1s linear;
}

#footer_div a:hover {
    filter:hue-rotate(270deg) contrast(200%);
    cursor:url("images/cursors/cat_heart.png"), auto;
}

@media only screen and (max-width: 600px) {
    body {
        overflow-y:hidden;
    }

    #section_name {
        top:15vh;
        right:15vw;
        font-size:2em;
    }

    #nav_div {
        top:0;
        left:0;
        right:0;
    }
    .content {
        left:2.5vw;
        right:2.5vw;
    }
    #footer_div {
        bottom:.2.5vh;
        top:75vh;
        left:2.5vw;
        right:2.5vw;
        font-size:1.1em;
    }
    #records_div iframe {
        width: 100%;
        height:100%;
    }
    #photos_div img {
        width:100%;
    }
}