@import url('/css/fontswap.css');
@keyframes floating {
0%   {left:-10px; top:150px;}
50% {left:-10px; top:160px;}
100% {left:-10px; top:150px;}
}
body {
font-family: 'Courier New', monospace;
color: #5e5e5e;
line-height: 19px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
font-size: 24px;
filter: grayscale(10%) sepia(30%) hue-rotate(40deg);
background: #000 url(/graphics/bg/win95bg.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #2b221b;  
}
::-webkit-scrollbar-thumb {
background: #cdbe94; 
}
::-webkit-scrollbar-thumb:hover {
background: #88D16; 
}
p {
color:white;
animation:none;
}

a:link {
color: white;
text-decoration-color: #37992D;  
animation: textShadow 1.6s infinite;
}            
a:visited {
color: #D0D6C1;
text-decoration-color: #37992D;
}
.box {
background: url(/graphics/shinies/notepad.png);
background-size: contain;
background-repeat: no-repeat;
font-size: 11px;
word-wrap: break-word;
font-weight: 600;
padding: 100px;
width: 200px;
height: 300px;
top: 220px;
left: 6px;
position: absolute;
animation-name: floating;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: ease;
}
.notepad {
width:200px;
height: 253px;
overflow:scroll;
}
.notepad::-webkit-scrollbar {
display:none;
}
.nodepad:img{padding:3px;}