@font-face {
    font-family: Favorit;
    src: url('/fonts/ABCFavoritVariableEdu-Regular.woff2');
}

/* Vars */
:root {
    --Accent: #f5c1e0;
    --Link: #ea36a6;
    --Shadow: #ff35b12a;
    --Background: #faf7fae8;
}

/* My CSS :3 */
body {
    font-family: "Favorit", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
}

.content {
    margin: 5vw;
    padding: 20px;

    background: var(--Background);
    backdrop-filter: blur(10px);
    border-radius: 25px;

    border: 4px solid var(--Accent);

    -webkit-box-shadow:0px 0px 50px 0px var(--Shadow);
    -moz-box-shadow: 0px 0px 50px 0px var(--Shadow);
    box-shadow: 0px 0px 50px 0px var(--Shadow);
}


.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-text {
    color: var(--Link);
}

img {
  width: 100%;
  height: auto;
  display: block; /* Removes unwanted space below the image */
}

img.pixelated {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
} 

h1 {
    font-size: 4rem;
}

.link {
    color: var(--Link);
    text-decoration: underline wavy var(--Accent) 2px;
}

/* CSS I stole from Agatka Iskra LOL */
.m {
    background-color: deeppink;
    height: 50px;
    color: white;
}

.m marquee {
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
}

.b {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.cd-wrapper {
    position: fixed;
    bottom: -350px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#cd {
    width: 395px;
    animation: rotation 10s infinite linear;
    display: block;
    z-index: -2;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
}

#tl {
    text-align: center;
    vertical-align: middle;
    font-size: 0; /*40px*/
    padding-top: 35px;
    padding-left: 35px;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#tl:hover {
    color: black;
}

#tl img {
    width: 330px;
}

a {
    all: unset;
}


.container {
    overflow: hidden;
}

.sliding-background {
    background: url("/images/divas.png") repeat-x;
    height: 1080px;
    width: 5760px;
    animation: slide 60s linear infinite;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

@keyframes slide {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-1920px, 0, 0);
    }
}

