:root {
  --forest: #3D9B6C;
  --darkforest: #1e4e36;
  --clearing: #d4f1b9;
}

body {
    padding: 0;
    margin: 0;
    background-color: black;
    font-family: sans-serif;
    color: white;
}

a {
    color: var(--clearing);
}

img {
    image-rendering: pixelated;
}

.pg {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

iframe {
    -ms-overflow-style: none;
    height: 500px;
}

iframe::-webkit-scrollbar {
    display: none;
}

.box {
    width: 500px;
    height: 600px;
    max-width: 100vw;
    max-height: 100vh;
    background-color: #1e4e367e;
    border-radius: 10px;
    text-align: center;
    color: white;
    overflow-y: scroll;
    -ms-overflow-style: none;
}

#blink img {
    height: 20px;
}

#blink {
    margin-top: 10px;
}

.stick {
    position: sticky;
    top: 0;
    background-color: #1e4e367e;
    padding-bottom: 10px;
    border-bottom: 2px dotted var(--darkforest);
}

h1 {
    margin: 5px 0 5px 0;
    text-shadow:     
    -2px -2px 0 var(--forest),
     0   -2px 0 var(--forest),
     2px -2px 0 var(--forest),
     2px  0   0 var(--forest),
     2px  2px 0 var(--forest),
     0    2px 0 var(--forest),
    -2px  2px 0 var(--forest),
    -2px  0   0 var(--forest);
}

.box::-webkit-scrollbar {
    display: none;
}

.box .text {
    margin: 10px;
}

.box img {
    width: 100%;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.trans button {
    background-color: transparent;
    border: none;
}

.flex img {
    align-self: center;
}

button {
    background-color: var(--forest);
    border-color: transparent;
    color: white;
    border-radius: 5px;
}

button:hover {
    cursor: pointer;
}

#error {
    display: none;
}

.marquee {
    --duration: 20s;
    position: relative;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

li {
    list-style-type: none;
}

input {
    text-align: center;
    border: 2px solid var(--forest);
    background-color: var(--darkforest);
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

input[type=button], input[type=submit], input[type=reset] {
    border: 1px solid black;
    color: black;
    cursor: url(https://evehibi.neocities.org/cursor2.png), auto;
}

input[type=file] {
    border: none;
}

input:focus {
    text-align: center;
    border: 2px solid var(--darkforest);
    border-radius: 5px;
    color: var(--clearing);
}

::placeholder {
    color: var(--forest);
    opacity: 1;
}