/********
* Font  *
************************************************/
@font-face 
{
  font-family: myFont;
  src: url(/Wonkyneocity-Regular.otf);
}


p, h1
{
  font-family: myFont;
  padding: 0%;
  margin: 0%;
}

p 
{
  font-size: 20px;
}


/***********
* General  *
************************************************/
body 
{
  background: linear-gradient(30deg, #b28272, rgb(227, 215, 163));
  margin: 0;
  padding: 0;
}

a 
{
    cursor: grab
}

.bod 
{
  margin: 0;
}

.tiny 
{
  height: 150px;
  padding: 5px;
  /* border-radius: 10px; */
  box-sizing: border-box;
}


/*********************
* Background Scroll  *
************************************************/
.containInfinite
{
    overflow: hidden;
    top: 20px;
}

.infinite-scrolling 
{ 
    background: url("/code/IMG/library/personal/scrollableBackground.png") repeat-x;
    height: 1264px;
    width: 20916px;
    animation: slide 150s linear infinite;
}

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



/****************
* Grid Styling  *
************************************************/
.container 
{
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-areas:
    "header header header"
    "left content right"
    "footer footer footer";
  grid-template-columns: 1fr 3fr 1fr;
  gap: 5px;
  /* background-color: #c8affb; */
  /* background: linear-gradient(0deg, #263551, #4d83dd); */
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 5px;
}

.container > div
{
  /* background-color: rgba(255, 255, 255, 0.194); */
  padding: 2px;
}

.container > div.header 
{
  grid-area: header;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  height: 100px;
}

.container > div.left 
{
  grid-area: left;
  align-items: center;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  /* background-color: rgba(174, 242, 166, 0.537); */
}

.container > div.right 
{
  grid-area: right;
  align-items: center;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  /* background-color:rgba(174, 242, 166, 0.537); */
}

.container > div.content 
{
  grid-area: content;
  /* background-color: rgba(174, 242, 166, 0.537); */
}

.container > div.footer 
{
  grid-area: footer;
  align-items: center;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
}

.title 
{
  text-align: center;
  font-size: 30px;
  color: black;
  border: 2px solid rgb(0, 0, 0);
  /* border-top-left-radius: 10px;
  border-top-right-radius: 10px; */
  box-sizing: border-box;
  background-color:  rgb(37, 164, 75);
}

.subTitle 
{
  text-align: center;
  font-size: 20px;
  color: black;
  border: 2px solid rgb(0, 0, 0);
  /* border-top-left-radius: 10px;
  border-top-right-radius: 10px; */
  box-sizing: border-box;
  background-color:  rgb(37, 164, 75);

}

.scroll 
{
  border: 2px solid rgb(0, 0, 0);
  overflow-y: scroll;
  flex: 1;
  box-sizing: border-box;
  background-color:   rgb(244, 239, 210);
  padding: 3px;
  /* border: 1px solid blue; */

  /* border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px; */
  /* border-top-left-radius: 0px;
  border-top-right-radius: 0px; */
}

.pad 
{
  margin-top: 10px;
}



/***********
* Buttons  *
************************************************/
.backToMain 
{
  position: absolute;
  left: 25px;
  top: 10px;
  padding: 8px;
  border-width: 2px;
  border-style: outset;
  border-color: rgba(0, 0, 0, 0.655);
  border-radius: 30px;
  height: fit-content;
  width: fit-content;
  box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.162);

  background-color: rgb(244, 239, 210);
}

.clickLink
{
  color: black;
  text-decoration: none!important;
}

.backToMain2 
{
  left: 25px;
  bottom: 10px;
  padding: 8px;
  border-width: 2px;
  border-style: outset;
  border-color: rgba(0, 0, 0, 0.655);
  border-radius: 30px;
  height: fit-content;
  width: fit-content;
  box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.162);

  background-color: rgb(244, 239, 210);
}



/**************
* Box in Box  *
************************************************/
.lilGuy
{
  /* border: 2px solid palevioletred; */
  margin: 2px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;

  /* border-radius: 15px; */
}

.block
{
  /* border: 1px solid red; */
  border: 2px solid rgb(0, 0, 0);
  flex: 1;
  box-sizing: border-box;
  background-color: rgb(244, 239, 210);

  overflow: scroll;
}



/*********************
* Left  *
************************************************/
.profilePicture 
{
  /* make nice border for picture ?*/
  height: 200px;
  margin: 2px;
  /* border-radius: 15px; */
}


/* current song */
.currentSong 
{
  height: 300px;
}

.audio
{
  width: 100%;
}

.song 
{
  border: 2px solid rgb(0, 0, 0);
  box-sizing: border-box;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.486);

  background-color: rgba(0, 0, 0, 0.16);

  margin: 2px;
  padding: 1px;

}

.songTitle
{
  border: 2px inset rgb(0, 0, 0);
  /* border-bottom: 2px solid black; */
  background-color: rgba(29, 111, 51, 0.774);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;

  margin: 3px;
  padding: 3px;
}

.white 
{
  color: white;
  text-decoration: none;
}


/*********
* Top 5  *
************************************************/
.top5 
{
  /* border: 2px solid palevioletred; */
  max-height: 400px;
}

.ed 
{

  border-bottom: 2px solid black;
  padding: 5px;
  margin-top: 5px;
}

.ed1
{
  font-size: 22px;
}

.ed2
{
  font-size: 17px;
  color: rgba(13, 71, 13, 0.767);
}


/*********
* middle *
************************************************/
.HDesign
{
  position: relative;
  top: -10px;
  height: 150px;
  filter: hue-rotate(145deg); /* 90deg = green*/
}

.personalIntro 
{
  /* border: 2px solid salmon; */
  height: 200px;
  display: flex;
  flex-direction: column;
}

.aboutMe 
{
  /* border: 2px solid red; */
  height: 300px;
  display: flex;
  flex-direction: column;
}

.interests 
{
  /* border: 5px solid beige; */
  height: 300px;
  display: flex;
  flex-direction: column;
}

.personalUpdateText
{
  border: 3px solid rgba(41, 21, 4, 0.918);
  background-color: #f3efdf;
  /* border-radius: 15px; */
  margin: 4px;
  padding: 2px;
}

.updateHeader
{
  border-bottom: 2px solid rgb(0, 0, 0);
}

.messages
{
  /* border: 5px solid beige; */
  height: 200px;
  display: flex;
  flex-direction: column;
}



/*********
* right  *
************************************************/
.status 
{
  /* border: 2px solid rgb(0, 42, 255); */
  height: 200px;
}

/* stickers */
.stickers 
{
  /* border: 2px solid wheat; */
  height: 400px;
  /* max-height: 250px; */
}

.stickBox
{
    /* border: 2px solid rgb(21, 0, 255); */
    position: relative;
    overflow: scroll;

    height: calc(100% - 30px);
    font-size: 30px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    column-gap: 2px;
    row-gap: 2px;
}

.stick
{
    position: relative;
    /* border: 2px solid rgba(255, 0, 0, 0.082); */
    height: fit-content;

    /* Center art */
    display: flex;
    align-items: center;
    justify-content: center;
}

.stickWidth
{
    position: relative;
    /* border: 2px solid rgb(255, 0, 132); */
    width: 100%;
}




/**********
* Footer  *
************************************************/
.downleft 
{
  /* border: 5px solid rgb(28, 129, 206); */
  height: 30px;
  width: fit-content;
}

.updated 
{
  border: 2px solid black;
  
  background-color: rgb(37, 164, 75);
  
  height: fit-content;
  width: fit-content;
  
  padding: 3px;
}


/* development warning */
.warning
{
    font-family: myFont;
    position: absolute;
    top: 45%;
    left: 37%;
    width: fit-content;
    height: 100px;

    border: 1px outset rgb(246, 246, 246);
    background-color:#b7b7b7;

    align-items: center;
    justify-content: center;
    padding: 1px;

    z-index: 500;
}

.clickedWarning
{
    display: none;
}


.sysMessage 
{
    border: 1px outset rgb(152, 152, 152);
    background-color: #070378;
    color: white;
    padding: 1px;
    margin: 0;
}

.warningText
{
    padding-left: 4px;
    padding-right: 4px;

}

.fakeButton
{
    position: relative;
    border-style: outset;
    border-width: 1.5px;
    border-color: aliceblue black black aliceblue;
    box-sizing: border-box;
    width: 27px;

    margin-top: 5%;

    left: 40%;

    cursor: grab;
}

.fakeButton:hover
{
    border: 2px outset rgba(0, 0, 0, 0.648);
    background-color: rgba(0, 0, 0, 0.043);
}

.fakeButton:active
{
    border: 2px inset rgba(0, 0, 0, 0.648);
    background-color: rgba(0, 0, 0, 0.151);
}



/****************
* media aspect  *
************************************************/
@media (min-aspect-ratio: 16/9)
{
  .overTXT 
  {
    /* border: 1px solid red; */

    width: fit-content;
    max-width: 90%;

    overflow-x: scroll;
    white-space: nowrap;

    position: absolute;

    font-size: 1.5vw;

    top: 79%;
    left: 5%;
  }

  .infinite-scrolling 
  {
    height: 1290px;
  }
  

}

@media (max-aspect-ratio: 16/9) 
{
  .overTXT 
  {
    /* border: 1px solid blue; */
    /* width: fit-content; */
    width: 100px;

    position: absolute;

    overflow-x: scroll;
    white-space: nowrap;

    height: 15px;
    top: 77%;
    left: 5%;

    scrollbar-width: 0px;
    font-size: 10px;
  }

  .infinite-scrolling 
  {
    height: 1264px;
  }
}

