@import url("/css/style_main.css");

@font-face {
    font-family: "Determination";
    src: url("/font/determination.ttf");
}

body {
    background-image: none;
    background-color: black;
    
    font-family: "Determination", sans-serif;
    
    color: white;
    
    image-rendering: pixelated;
}

.bubble {
    border-style: solid;
    border-width: 0.2rem;
    border-color: white;
    
    background-color: #000000;
}

.bg-purple {
    z-index: -1;
    position: fixed;
    
    width: 100%;
    height: 100%;
    
    background-image: url("/img/deltarune_shrine/checkerboard.png");
    background-repeat: repeat;
    
    animation: bg-loop 60s linear infinite;
}

.bg-purple--opposite {
    animation: bg-loop-opposite 60s linear infinite;
    opacity: 0.5;
}

@keyframes bg-loop {
    0% {
        background-position: 0 0;
    }
    
    100% {
        background-position: 100% 100%;
    }
}

@keyframes bg-loop-opposite {
    0% {
        background-position: 0 0;
    }
    
    100% {
        background-position: -100% -100%;
    }
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
}

hr {
    border-color: white;
}

strong {
    color: yellow;
}

section {
    width: 70%;
    margin: 2rem auto;
    
    border-style: solid;
    border-width: 0.2rem;
    border-color: white;
    
    background-color: #000000;
    
    padding: 2rem;
}

.section--intro {
    text-align: center;
}

.section__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    
    & > img {
        width: 2.5rem;
    }
}

.character-container {
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 3rem auto;
}

.character-container__bubble-tail {
    display: block;
    height: 32px;
}

.character-container__bubble {
    background-color: white;
    color: black;
    padding: 2rem;
    border-radius: 2rem;
    width: 20rem;
    word-wrap: wrap;
}

.character-container__character {
    width: 15rem;
}

.character-container__character--swatchling {
    animation: hue-shift 5s linear infinite;
}

@keyframes hue-shift {
    0% {
        filter: hue-rotate(0);
    }
    
    100% {
        filter: hue-rotate(360deg);
    }
}









