@import url("/css/style_main.css");
@import url('https://fonts.googleapis.com/css2?family=Glass+Antiqua&display=swap');

.glass-antiqua-regular {
  font-family: "Glass Antiqua", cursive;
  font-weight: 400;
  font-style: normal;
}

html {
    /* cursor: none; */
    
}

body {
    background-image: url('/img/th_shrine/bg.jpg');
    
    font-family: "Glass Antiqua", cursive;
    font-weight: 400;
    font-style: normal;
    
    color: rgb(30, 10, 10);
    
    font-size: 1.5rem;
    text-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2rem;
}

hr {
    border-color: rgb(30, 10, 10);
    box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.5);
}

section {
    margin: 2rem auto;
    width: 70%;
    
    background: #fce6d2;
    background: radial-gradient(circle,rgba(252, 230, 210, 0.8) 27%, rgba(232, 144, 144, 0.8) 74%);
    
    border-style: solid;
    border-color: rgb(30, 10, 10);
    border-radius: 2rem;
    
    padding: 2rem;
}

.section--intro {
    padding: 0;
}

#reimu {
    position: absolute;
    
    top: 0px;
    left: 0px;
    
    z-index: 2;
    
    pointer-events: none;
    
    transform: scale(150%);
    image-rendering: pixelated;
}

#soku-main {
    display: block;
    margin: auto;
    height: 268px;
    
    image-rendering: pixelated;
}

.character-container {
    background-image: url("/img/th_shrine/aya_bg.jpg");
    background-position: center center;
    background-size: cover;
    
    border-style: solid;
    border-width: 0.2rem;
    
    width: 240px;
    height: 300px;
    
    margin: auto;
}

.bottom-right-menu-container {
    width: 80%;
    height: 100%;
    position: fixed;
    pointer-events: none;
}

.bottom-right-menu {
    width: 100%;
    height: 100%;
    position: relative;
}

#reimu-toggler {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: all;
    
    font-family: "Glass Antiqua", cursive;
    font-size: 30px;
    
    margin: 1rem;
    
    background: #fce6d2;

    border-style: solid;
    border-color: rgb(30, 10, 10);
    border-radius: 2rem;
    
    transition: transform 0.2s;
    transform: scale(100%);
}

#reimu-toggler:hover {
    transform: scale(120%);
}




































