
/* basic stuff */
:root {
    --bg-color: #cd5e46;
    --accent-color: #c2f3ff;
}

.content {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
}

.web-revival {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    height: 5%;
    position: fixed;
    top: 0%;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* header stuff */

.header {
    background-color: var(--accent-color);
    border: 0.1rem solid #000000;
    height: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    display: flex;
    justify-content: center;
    transform: scale(1);
    width: 70%;
    transition: all 1s;
    box-shadow: 0.5rem 0.5rem #000000;
}

.header:hover {
    transform: scaleX(1.3);
}

/* settings */

.settings {
    display: flex;
    width: 25%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}


/* background stuff */

#background {
    background-image: url('../images/background.png');
    background-size: 1%;
    background-position-x: 0;
    background-position-y: 0;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    position: fixed;
    z-index: -500;
    width: 100%;
    height: 100%;
}

.about-me {
    border: 0.1rem solid #000000;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0.5rem 0.5rem #000000;
    background-color: var(--accent-color);
    width: 70%;
    height: 100%;
}

.about-me * {
    padding: 0;
    margin: 1rem;
}

.little-guy-div {
    position: absolute;
    bottom: 0%;
    width: 70%;
}

#little-guy {
    position: relative;
    left: 50%;
    transition: 0.3s ease-in all;
    margin: 0;
    padding: 0;
    top: 10px;
}

#little-guy-platform {
    margin: 0;
    padding: 0;
    width: 100%;
    /* IE, only works on <img> tags */
  -ms-interpolation-mode: nearest-neighbor;
  /* Firefox */
  image-rendering: crisp-edges;
  /* Chromium + Safari */
  image-rendering: pixelated;
}

/* labels yey */
label {
    color: white;
    background-color: var(--bg-color);
    border: 0.1rem solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0.5rem 0.5rem #000000;
}

.hidden {
    opacity: 0% !important;
}

.popup {
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: whitesmoke;
    z-index: 500;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    box-shadow: 0.5rem 0.5rem #000000;
}

.popup-hidden {
    display: none;
}

#art-popup img {
    width: 50%;
}

#notice {
    position: absolute;
    color: var(--bg-color);
    top: 18%;
    left: 5%;
    opacity: 100%;
    transition: 0.3s all ease-in-out;
    background-color: white;
    box-shadow: 0.5rem 0.5rem #000000;
    z-index: 1000;
}

.clickable {
    text-decoration: underline dashed;
    cursor: pointer;
    color: blue;
    transition: 0.3s all ease-in-out;
}

.clickable:hover {
    color: lightblue;
    cursor: pointer;
    transform: scale(1.1);
}
