/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */
    
    
            

            :root {
                --header-image: url('https://p3llerax4ce.neocities.org/GH9onWWbsAA-Swx.jpg');
                --body-bg-image: url('https://p3llerax4ce.neocities.org/test/testingtileBG.png');

                /* colors */
                --content: #660708;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!*/



            body {
                margin: 0;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */
        .char_img{
            width: 45%;
            cursor: pointer;
            margin-bottom: 10px;
        }

        .dialogue_stuff {
            background-color: grey;
            color: black;
            font-size: 75%;
            width: 55%;
            min-height: 50px;
            padding: 3px 7px;
            border: 1px solid black;
            text-align: left;
        }
    
    
    
    
    
    
    .rotate, .appear {
			width: fit-content;
			height: fit-content;
			display: inline-block;
			position: absolute;
			color: transparent; background:transparent;
		}
		.rotate:hover, .rotate:focus, .appear:hover, .appear:focus {
			color: transparent; background:transparent;
		}
		.rotate:hover img, .rotate:focus-visible img {
			transform: rotate(3deg);
		}
		.rotate:hover span, .rotate:focus-visible span, a:focus span {
			opacity: 1;
		}


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            
            #container {
                max-width: 725px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                margin-top: 25px;
                margin-bottom: 25px;
                
                /* this centers the entire page */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                align-items: center;
                border: 1px solid;
                border-color: grey black black grey;
                background-color: #0B090A;
                background-image: linear-gradient(to right, #0B090A, #161A1D);
                flex: 1;
                padding: 10px;
                order: 2;
            }
            
            p {
                font-size: 14px;
            }

            h1,
            h2,
            h3 {
                color: #BA181B;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #BA181B;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #0B090A;
                background-image: linear-gradient(to right, #0B090A, #161A1D);
                border: 3px inset black;
                padding: 5px;
            }
            
            
            /* sheet */
.flip-card {
  background-color: transparent;
  width: 250px;
  height: 500px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform .35s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: transparent;
}

.flip-card-back {
  background-color: transparent;
  transform: rotateY(180deg);
}