body {
    background-color: black;
    text-align: center;
    color: white;
    font-family: "Averia Serif", "Averia Serif Libre", serif;
}

.title {
    font-size: 64px;
    margin-bottom: 10px;
}

footer {
    /* Stick to the bottom */
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    margin-bottom: 10px;
}

footer a {
    color: orange;
}

.description {
    margin: 0 auto;
}

.wishlist {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
}

.wishlist img {
    border-radius: 15px;
}

.creator {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 40px;
}

.dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-clear {
    margin-bottom: 166px;
}

.symbol-button {
    font-family: "Averia Serif", serif;
    width: 110px;
    height: 50px;
    background-color: #471214;
    color: white;
    font-size: 32px;
    border-radius: 10px;
    border: 2px solid #ff9b05;
    cursor: pointer;
    margin: auto;
}

.symbol-button:hover {
    background-color: #601e21;
}

.item-smooth {
    display: flex;
    align-items: center;
    justify-content: center;
}

#symbol-smooth {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 2px solid #ccc;
    cursor: pointer;
}

#symbol-smooth::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}


.colors {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
}

.symbol-name {
    font-size: 24px;
}

#symbol-name {
    display: block;
    margin: auto;
}

.copied-message {
    margin: 10px 0px 0px 0px;
    opacity: 0;
}

.text-fade {
    animation: fadeOut 1s ease-in-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* EYE */

.eye-container {
    position: absolute;
    width: 137px;
    height: 72px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: center;
    animation: openEye .2s ease-in-out forwards;
    z-index: -1;
}

.eyewhite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.iris {
    width: 67px;
    height: 66px;
    position: absolute;
    z-index: 1;
    transform: scaleY(1);
}

.border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

@keyframes openEye {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes closeEye {
    100% {
        transform: scaleY(0);
    }

    0% {
        transform: scaleY(1);
    }
}