html {
    background-image: url(bg/sky.png);
    background-color: rgb(255, 255, 255);
    font-family: serif;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(255, 192, 218) rgb(191, 191, 255);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}
*::-webkit-scrollbar-track {
    background: rgb(255, 202, 217);
}
*::-webkit-scrollbar-thumb {
    background-color: rgb(255, 164, 255);
    border-radius: 10px;
    border: 5px none rgb(255, 216, 255);
}


a:link {
    color: rgb(255, 197, 218);
}

a {
    color: rgb(255, 197, 218);
}

a:hover {
    color: rgb(172, 255, 255);
    transition: color 0.5s ease;
    animation: glow 2s infinite;
}

@font-face {
    font-family: fairycode;
    src: url('FairyCode-Regular.otf');
}



.spacer{
    height: 2em;
    width: 100%;
    display: block;
    flex-shrink: 0;
    line-height: 1.2;
    letter-spacing: 1.1px;
    word-spacing: 1.1px;
    
}
.outerwrapper {
    display: flex;
    justify-content: center;
}
.mainwrapper{
    background: rgb(255, 255, 255);
    background-image: url(bg/clouds.png);
    border: rgb(255, 183, 243) 5px dotted;
    display: flex;
    height: 90vh;
    width: 500px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-top: 5px;
    align-items: center;
    image-rendering: pixelated;
    overflow-y: auto;
    overflow-x: hidden;
    animation: borderani 5s infinite;
    position: relative;
}

.header{
    background-image: url(bg/clouds.png);
    background-size: cover;
    color: rgb(25, 0, 255);
    border: rgb(255, 183, 243) 5px dotted;
    height: 50px;
    width: 400px;
    text-align: center;
    padding: 5px;
    align-items: center;
    margin: 5px;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 25px;
}

.body{
    color: rgb(25, 0, 255);
    text-align: center;
    border: rgb(206, 216, 255) 2px dotted;
    height: 400px;
    width: 375px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgb(194, 214, 255);
    flex-shrink: 0;
    padding: 15px;
    animation: borderani 5s infinite;
    margin-bottom: 20px;
}

