html {
    font-family: 'Lexend', 'Calibri', 'sans-serif';
    background-color: #000000;
    color: #000000;
}

.yourenotsupposedtobehere{
    background-color: #000000;
    color: #0a0a0a;
    border: #000000;
    cursor: crosshair;
    font-size: x-small;
}

.goaway .familiar {
    background: repeating-linear-gradient(-45deg, red 0%, rgb(0, 0, 0) 7.14%);
    background-size: 600vw 600vw;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slide 10s linear infinite forwards;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@keyframes slide {
  0%{
    background-position-x: 0%;
  }
  100%{
    background-position-x: 600vw;
  }
}
.goaway .comfort {
    background: repeating-linear-gradient(-45deg, rgb(0, 255, 102) 0%, rgb(0, 0, 0) 7.14%);
    background-size: 600vw 600vw;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slide 10s linear infinite forwards;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@keyframes slide {
  0%{
    background-position-x: 0%;
  }
  100%{
    background-position-x: 600vw;
  }
}



@font-face {
    font-family: 'winxp'; src: url('/fonts/winxp.otf');
}
.familiar {
    font-family: "winxp", 'Lexend', 'Calibri', sans-serif;
    font-style: normal;
    color: rgb(0, 0, 0);
    cursor: default;
    font-size: large;
}
.comfort {
    font-family: "winxp", 'Lexend', 'Calibri', sans-serif;
    font-style: italic;
    color: rgb(0, 0, 0);
    cursor: default;
    font-size: large;
}

#notepad {
    font-family: 'Sometype Mono', 'Calibri', 'sans-serif';
    position: fixed;
    z-index: 9;
    backdrop-filter: blur(10px);
    background-image: linear-gradient(rgba(181, 173, 255, 0.164), rgba(55, 37, 255, 0.241));
    border: 1px solid #d3d3d3;
    top: 19%;
    left: 34%;
}

#notepadheader {
    font-family: 'Lexend', 'Calibri', 'sans-serif';
    padding: 10px;
    cursor: move;
    z-index: 10;
    color: #ffffff;
    line-height: 10px;
    text-align: left;
    user-select: none;
}

#notepad .notepadbody {
    text-align: left;
    background-color: #f1f1f1;
    margin: 5px;
    color: #000000;
    border: 7px solid #f1f1f1;
    font-size: small;
}

#notepad .fake {
    font-family: 'Sometype Mono', 'Calibri', 'sans-serif';
    text-align: center;
    margin: 5px;
    color: #ffffff;
    font-size: small;
    word-spacing: 10px;
    user-select: none;
    text-decoration: none;
    cursor: default;
}

#notepadheader button {
    background-color: #d81515;
    color: white;
    font-family: 'Lexend', 'Calibri', 'sans-serif';
    padding-left: 12px;
    padding-right: 12px;
    cursor: pointer;
    user-select: none;
    float: right;
    width: 45px;
}



footer {
    position: fixed;
    bottom: 0;
    margin-left: -12px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* apparently this is vertical alignment and not also horizontal. huh */
    background-image: linear-gradient(rgba(181, 173, 255, 0.164), rgba(55, 37, 255, 0.241));
    backdrop-filter: blur(10px);
}

footer .icons {
    bottom: 0px;
    padding: 10px;
    padding-left: 20px;
}

footer a {
    font-family: 'Lexend', 'Calibri', 'sans-serif';
    text-decoration: none;
    padding-right: 20px;
}

footer img {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

footer a:hover {
    filter: brightness(1.5)
}

footer .date {
    font-family: 'Lexend', 'Calibri', 'sans-serif';
    text-align: center;
    color: rgb(255, 255, 255);
    padding-right: 40px;
    font-size: 16px;
    line-height: 50%;
}

/* men kissing */
@media (max-width: 768px) {
    html {
        color: #ffffff;
        background-image: url("bgs/mdandelion.png");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }

    #notepad {
        top: 5%;
        left: 1%;
    }

    #notepad .fake {
        color: #ffffff;
    }
}