/* 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." */
@font-face { /*Yiik dialogue font*/
  font-family: Anon;
  src: url(/Fonts/Anonymous.ttf);
}

@font-face { /*From Onism1999.com*/
  font-family: Onism;
  src: url(/Fonts/onismrecreation-webfont.woff2) format('woff2'),
  url(/Fonts/onismrecreation-webfont.woff) format('woff');
  font-weight: normal;
  font-style: normal;
        }

@font-face { /*Zine*/
  font-family: Rowdies;
  src: url(/Fonts/Rowdies-Light.ttf);
}

@font-face { /*Zine Large*/
  font-family: Bogle;
  src: url(/Fonts/BBHBogle-Regular.ttf);
}

* {box-sizing: border-box;}

body {
  text-align: center;
  background-image: url("/YIIK/Img/Frankton/FranktonIso.png");
  background-size:2200px;
  font-family: "Onism";
  font-size: 25px;
  color: rgb(255, 251, 16);


  cursor: url('/YIIK/uicursor.png'), auto;
}

a {cursor: url('/YIIK/uicursor.png'), auto;}


div {
  max-width: 100%; 
  margin: auto;
}

.BoxText {
  width: 95%;
  height: 100%;
}

#Container {
  border-color: #1a34a8f8;
  border-width: 4px;
  border-style: solid;
  background-color: #8cc2ffab;
  width: 1000px;
  position: relative;
}

#GridContainerOne {
  position: relative;
  max-width: 900px;
  width: 900px;
  max-height: 900px;
  display: grid;
  grid-template-columns: repeat(18, 50px);
  grid-template-rows: repeat(20, 50px);
}

/*YIIK Review Box*/

#ScrollBox {
grid-row: 2 / 6;
grid-column: 1 / 10;

background: #76dfffad;

padding: 6px; 
width: 100%;
height: 100%;
border:4px solid rgb(0, 36, 197);
border-style: dashed;
text-align: left;
}

#Scroll {
font-family: Anon;
font-size: 15px;
background: #FFF;
color: #468386;
padding:5px;
border:4px solid rgb(0, 36, 197);
width: 100%;
height:180px;
overflow-y:auto;
overflow-x: hidden;

span {
color:chartreuse;
     text-shadow: 
     -1px -1px 0 #181616, 
     1px -1px 0 #181616, 
     -1px 1px 0 #181616, 
     1px 1px 0 #181616,
      -1.5px -1.5px 0 #181616, 
     1.5px -1.5px 0 #181616;
}
i {
  font-size: 10px;
}
}

/*Zine Box*/

#Zine::-webkit-scrollbar {
width: 10px;
}
#Zine::-webkit-scrollbar-track {    
background-color: rgb(255, 174, 137);
border: 2px solid #000000;
}
#Zine::-webkit-scrollbar-thumb {
background: #ff7cf8;
border: 2px solid #000000;
}

#ZineHolder {
  grid-row: 2 / 14;
  grid-column: 11 / 19;
  width: 100%;
  height: 100%;
  position: relative;
  border:2px solid #000000;

    #Zine {
    border:4px solid #ffe789;
    background-color: #F2BAC9;
    
    -webkit-text-fill-color: #ff7cf8;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #161200;

    text-align: left;
    font-family: Rowdies;
    overflow-y: auto;

    width: 100%;
    height:100%;
    img {
      padding:0px;
      width: 300px;
    }
    }
  h1 {
    text-align: center;
    font-weight: bold;
    -webkit-text-stroke-width: .5px;
    font-family: Bogle;
    font-size: 30px;
    -webkit-text-fill-color: #ff59e9;
  }
  p {
    -webkit-text-stroke-width: 1px;
    font-size: 22px;
  }
  
}

/* Character Profiles Box */

#CharacterProfiles {
  position: relative;
  color: #FFF;
  grid-row: 7 / 18;
  grid-column: 1 / 8;
  width: 100%;
  height: 100%;
  background-color: #001f7f;
    border: 20px solid transparent;
    border-image: url("/YIIK/Img/UI_WindowClassic.png") 20;
  display: flex;
  flex-direction: column;
  overflow-y: auto;

  gap: 5px;

  #Element1 {
    position: absolute;
    left: 2px;
    background-color: #00207f00;
    img {
    width: 64px;
    height: 64px;
    padding: 0px;
    }
  }
  #Element2 {
    position: absolute;
    left: 2px;
    top: 511px;
    background-color: #00207f00;
    img {
    width: 64px;
    height: 64px;
    padding: 0px;
    }
  }

  img {
    width:250px;
    background-color: #001f7f;
  }
  p {
    margin-top: 0px;
  }
}

#CharacterProfiles::-webkit-scrollbar {
width: 4px;
}
#CharacterProfiles::-webkit-scrollbar-track {    
background-color: rgb(10, 0, 95);
border-radius: 8px;
}
#CharacterProfiles::-webkit-scrollbar-thumb {
background: #7c85ff;
border-radius: 10px;
}

#Dali {
  grid-row: 15 / 18;
  grid-column: 10 / 18;
  border:4px dashed rgb(96, 28, 255);
  background-color: #93d4ff;
  width: 100%;
  height: 100%;

  font-size: 35px;
  -webkit-text-fill-color: rgb(71, 96, 236);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #6d4cff;

  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;


  img {
    width: 128px;
    height: 128px;
    transition: 0.3s ease;
  }
  img:hover {
    max-width: 200px;
    transform: scale(1.5);
  }

}

#PixelWalkL {
  max-width: 320px;
  height: auto;
  position: fixed;
  left: 70px;
  bottom: 5px;
  padding: 0px;
}

#PixelWalkR {
  max-width: 320px;
  height: auto;
  position: fixed;
  right: 70px;
  bottom: 5px;
  padding: 0px;
}

#Map {
  max-width: 200px;
  height: auto;
  position: fixed;
  left: 130px;
  top: 80px;
  img {
    transition: 0.3s ease;
  }
  img:hover {
    max-width: 200px;
    transform: scale(1.5);
  }
 
  p {
    margin-top  :0px;
    border:2px solid rgb(0, 36, 197);
    border-style: solid;
    background-color: #76dfff;
  }
}

/*Alex*/
#mainImage {
  max-width: 300px;
  height: auto;
  position: fixed;
  right: 80px;
  top: 50px;
}


#hoverTarget {
font-size: 30px;
font-family: Anon;
position: absolute;
bottom:20px;
left: 47%
}

#DiaBack {
background-image: url(/YIIK/Img/YiikTalk.png);
background-size: contain;
width: 1300px;
height: fit-content;
overflow-x: visible;
  padding-top: 10px; 
  padding-bottom: 20px;
margin-bottom: 20px;

}

#Char {
    color: rgb(21, 255, 53);
    text-align: left;
    margin-left: 15px;
}

#Logo {
  max-width: 800px;
}

img {
  width: 100%;
  height: auto;
  padding: 20px;
}

@media screen and (max-width:400px) {
/*Fix Inline CSS (Which is always selected)
by making imageinsert separate from the image.*/
  div {
  width: 300px;
  }

  img {
    width: 100%;
    height: auto;
    padding-left: 0px;
    padding-right: 0px;
  }


  
}
