:root {
    --cursor-normal: default;
    --cursor-hover: pointer;
    --cursor-press: pointer;
}

:root.funny-cursor {
    --cursor-normal: url("/assets/images/cursor.png") 0 0, auto;
    --cursor-hover: url("/assets/images/cursorhover.png") 8 1, auto;
    --cursor-press: url("/assets/images/cursorpress.png") 8 1, auto;
}

body{
    background-color: black;
    text-decoration: white;
    margin: 50px;
    cursor: var(--cursor-normal);
}

@font-face {
    font-family: "undertale";
    src: url("/fonts/undertale.woff") format('woff');
}

@font-face {
    font-family: "undertale2";
    src: url("/fonts/undertale2.woff") format('woff');
}


#a {
    font-family: undertale2;
    margin-left: 15%;
    margin-right: 15%;
}

#alink {
    font-family: undertale2;
    font-size: 20px;
    color: aqua;
    text-decoration: underline;
}

#alinkPatient {
    font-family: undertale2;
    font-size: 20px;
    color:aquamarine;
    text-decoration: underline;
}

#q {
    color:cyan;
}




#header{
    color: yellow;
    text-align: center;
    font-family: undertale, Arial, sans-serif;
    font-size: 45px

}

#newsp p{
    font-family: undertale2;
    src: url("/fonts/undertale2.woff") format('woff');
}

#grey p{
    color: lightgray;
    font-size: 25px;
    margin-left: 15%;
    margin-right: 15%;
}

#title {
    color: yellow;
    text-align: center;
    font-family: undertale, Arial, sans-serif;
    font-size: 25px;

}

#titleSub{
    color: yellow;
    text-align: center;
    font-family: undertale2, Arial, sans-serif;
    font-size: 25px;

}

#title2 {
    color: yellow;
    text-align: center;
    font-family: undertale, Arial, sans-serif;
    font-size: 30px;

}

p{
    color: white;
    text-align: center;
    font-family: undertale, Arial, sans-serif;
    font-size: 20px;

}

h1{
    text-align: left;
    font-family: undertale, Arial, sans-serif;
    font-size: 20px;

}

h1 img {
    vertical-align: middle;
    margin-left: 45px;
    scale: 0.75;
}

.newsbutton {
  display: inline-flex;    
  align-items: center;    
  gap: 10px;              
  padding: 10px 20px;
  cursor: pointer;
  border: 5px solid #ccc;
  background-color: #000000;
  border-radius: 5px;
  cursor: var(--cursor-hover);
  color: aqua;
}

.newsbutton p {
  color: pink;
}

.newsbutton:active p {
  color: yellow;
}

.newsbutton:active {
  display: inline-flex;    
  align-items: center;    
  gap: 10px;              
  padding: 10px 20px;
  cursor: pointer;
  border: 5px solid #ccc;
  background-color: #000000;
  border-radius: 5px;
  cursor: var(--cursor-press);
  color: yellow;
  
}

.button-icon {
  width: 50px;             
  height: auto;
}

.highlighted {
    background-color: rgba(0,0,0,.5);
}

#dogbg {
    background-image: url('/assets/images/dogbg1.png'), url('assets/images/dogbg.png'); 
    place-items: center;
    background-size: cover; 
    background-position: center; 
    background-repeat: repeat; 
    height: 400px; 
    width: 100%;
    padding: 1px;
    color: white; 
    text-align: center;
    /* Nobody will sit here for 10 minutes hopefully? */
    animation: slide 600s linear infinite;
    outline: 3px solid grey;
    border-radius: 15px;
    outline-offset: 10px;
}


@keyframes slide {
  from { background-position: 0 0; }
  to { background-position: -10440px 4850px; } 
}

h2{
    text-align: left;
    font-family: undertale, Arial, sans-serif;
    font-size: 20px

}
#disclaimer{
    color: darkslategrey;
    text-align: center;
    font-family: undertale, Arial, sans-serif;
    font-size: 15px
}

.text-center {
    text-align: center;
}

.display-inline {
    display: inline-block;
}

:link {
    cursor: var(--cursor-hover);
}

:link:active {
    cursor: var(--cursor-press);
}

a{
    color: yellow;
    text-align: center;
    font-family: undertale, Arial, sans-serif;
    text-decoration: none;
    font-size: 25px
}

#art{
    text-align: center;
}

#randomImage{
    text-align: center;
}

#headerimg{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#screenimg{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* Original values: W: 683 H: 513 */
    width: 512.25px;
    height: 384.75px;
}

#archive{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.column {
  display: flex;
  justify-content: center;
  flex: 0%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0 4px;
  
}

img {
    image-rendering: pixelated;
}
img.blurry {
    image-rendering: smooth;
}
