/* kitten loves css */

:root {
    --cotingapurple: rgb(116, 8, 13);
    --aconiteviolet: rgb(218, 64, 85);
    --benzolgreen: rgb(85, 185, 172);
    --carmine: rgb(90, 14, 56);
    --greyishlavender: rgb(228, 132, 148);
    --myoffwhite: rgb(241, 235, 235);
}

.almendra-regular {
    font-family: "Almendra", serif;
    font-weight: 400;
    font-style: normal;
  }

  .almendra-regular-italic {
    font-family: "Almendra", serif;
    font-weight: 400;
    font-style: italic;
  }

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/paperT.png);
    background-color: var(--cotingapurple);
    color: var(--myoffwhite);
    overflow: hidden;
}

*::selection {
    background-color: var(--benzolgreen);
    color:black;
}

body {
    display:flex;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    flex-direction: column;
    align-items: center;
    max-width: 70%;
    min-width: 20%;
    height: 100vh;
    overflow: hidden;
}

a {
    color: var(--carmine);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: var(--benzolgreen);
    background-color: var(--carmine);
}

a:active {
    background-color: var(--carmine);
}

a::visited {
    background-color: var(--cotingapurple);
    color: var(--greyishlavender);
}

h1, h2, h3, h4, button {
    font-family:  "Almendra", system-ui;
}

h1 {
    color:black;
    top: 15px;
    font-size: 4vw;
    font-style: italic;
    padding: 0px;
    margin: 0px;
    letter-spacing: 0.5em;
}

h2 {
    letter-spacing: 0.3em;
    padding: 0px;
    margin-left: 2em;
    margin-bottom: -6px;
}

h3 {
    margin: 5px;
}

/* buttons */

nav, #extraNav {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    background-color: var(--myoffwhite);
    color: var(--cotingapurple);
    letter-spacing: 0.2em;
    padding: 5px;
    width: 130px;
    margin: 5px;
    border: none;
    transition:  all 0.3s ease-in;
    border-radius: 10px 3px 10px 3px;
    box-shadow: 2px 2px 2px var(--cotingapurple);
}

button:hover {
    background-color:var(--greyishlavender);
}

button:active {
    background-color: var(--benzolgreen);
    transition: all 0.2s;
}

#evillairButton {
    background-color: var(--aconiteviolet);
}

#evillairButton:hover {
    color: var(--myoffwhite);
    background-color: var(--carmine);
}

ul {
    list-style-type:none;
}

#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: 25px;
    height: 25px;
    padding: 5px;
    border-radius: 10px;
}

#socMed img:hover {
    background-color: var(--greyishlavender);
}

/* section containers */

.hiddenBox {
    display:none;
}

#infoBox {
    width: 90vmin;
    min-width: 10vmin;
    background-color: var(--myoffwhite);
    color:black;
    overflow: auto;
    padding: 15px;
    border-radius: 3px 10px 3px 10px;
    box-shadow: 2px 2px 5px var(--cotingapurple);
}

#aboutMe {
    display: block;
}

#literallyMe {
    width: 250px;
    height: 200px;
    display: block;
    float: left;
    margin-right: 1em;
}

#stuffContainer {
    display: flex;
}

/* 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;
}

