/* kitten loves css */

:root {
    --cotingapurple: rgb(165, 37, 44);
    --aconiteviolet: rgb(201, 48, 68);
    --benzolgreen: rgb(22, 201, 141);
    --carmine: rgb(107, 8, 57);
    --greyishlavender: rgb(228, 132, 148);
    --myoffwhite: rgb(241, 235, 235);
}

@font-face {
    font-family: "Jacquard12";
    src: url(/fonts/Jacquard12-Regular.ttf);
}

@font-face {
    font-family: "pixelsans";
    src: url(/fonts/PixelifySans-VariableFont_wght.ttf);
}

@font-face {
    font-family: "basis33";
    src: url(/fonts/basis33.ttf);
}

@font-face {
    font-family: "barcode";
    src: url(/fonts/LibreBarcode39-Regular.ttf);
}


html {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-size:cover;
    background-image: linear-gradient(var(--carmine), var(--cotingapurple));
    background-image: url(/images/backgrounds/paperT.png);
    background-position: 150px;
    background-color: var(--cotingapurple);
    color: black;
}

*::selection {
    background-color: var(--benzolgreen);
    color:black;
}

body {
    display:flex;
    font-family: 'basis33';
    font-size: 16px;
    flex-direction: column;
    align-items: center;
    max-width: 70%;
    min-width: 20%;
    height: 100vh;
    margin-top:100px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    text-align: center;
    margin: 0px;
    padding: 0px;
}


h1, h2, h3, h4, nav a {
    color:var(--carmine);
    font-family: "Jacquard12", monospace;
}

h1 {
    top: 15px;
    font-size: 5vw;
    font-style: italic;
    padding: 0px;
    margin: 0px;
    letter-spacing: 0.5em;
}

h2 {
    letter-spacing: 0.3em;
    padding: 0px;
    margin-bottom: -6px;
}

h3 {
    margin: 5px;
}

#homeImage {
    width:20em;
}

/* buttons */

nav {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: --var(--carmine);
    background: transparent;
    font-size: 20px;
    letter-spacing: 0.2em;
    padding: 5px;
    width: 130px;
    margin: 5px;
    font-weight: normal;
    border: solid 1px black;
    text-align: center;
}

nav a:hover {
    background-color:black;
}

nav a:active {
    background-color: var(--benzolgreen);
    transition: all 0.2s;
}

#evilLair {
    background-color: var(--aconiteviolet);
}

#evilLair:hover {
    color: var(--benzolgreen);
    background-color: var(--carmine);
}

a {
    color: var(--benzolgreen);
    background-color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 0.1em;
}

a:hover {
    color: var(--greyishlavender);
    background-color: black;
}

a:active {
    background-color: var(--carmine);
}

ul {
    list-style-type:cjk-ideographic;

}

#cursor {
    content:"";
    position: fixed;
    height:10px;
    width:10px;
    border-radius: 50%;
    transition:all 0.1s ease;
}

#batCursor {
    width: 25px;
}

/* social media buttons */

#socMed {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 10px;
}

#socMed a {
    background:none;
}

#socMed img {
    width: 15px;
    height: 15px;
    padding: 5px;
    border-radius: 10px;
}

#socMed img:hover {
    background-color: var(--greyishlavender);
}

/* section containers */


#aboutMe {
    min-width: 50vw;
    margin: 1em;
    display: grid;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto auto;
}

#aboutMe div {
    padding: 3px;
}

#itMe {
    text-align: center ;
}

#itMe img {
    width: 20em;
    display:block;
    float: left;
    margin-right: 1em;
}

#artistPortrait {
    font-style: italic;
    text-align: center;
}

/* art gallery */

#miniGalleryContainer {
    width: 100%;
    overflow: auto;
    white-space:nowrap;
}

#miniGallery {
    width:auto;
    height: 100px;
    display:inline-block;
}

#galleryText {
    font-size: 11px;
    color: black;
}

/* below css from w3 schools */
.column {
    width:auto;
    display: inline-block;
    padding: 3px;
}

/* Style the images inside the grid */
.column img {
    cursor: pointer;
    height: 100px;
    padding: 3px;
}

.column img:hover {
    background-color: var(--myoffwhite);
    opacity: 0.7;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

#expandedImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 80vmin;
}

