/* This css page is for css that only affects the landing page. */

.speech-bubble {
	position: relative;
	background: #f1e9e8;
	border-radius: .4em;
	height:auto;
	margin-top:-30px!important;
	padding:7px;
	z-index:4;
	border-width:0px 0px 4px 0px;
	border-style:solid;
	border-color:#33245e;
}

.speech-bubble:after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 30px solid transparent;
	border-bottom-color: #f1e9e8;
	border-top: 0;
	margin-left: -30px;
	margin-top: -30px;
}

#pronouns {
  background:rgba(6, 5, 21, 0.6);
  color:#3c3a61;
  margin-top:10px;
  height:69px;
  font-family:"PT Sans", cursive;
  font-weight:600;
  text-align:center;
  font-size:16px;
  padding-top:12px;
  border-radius:20px;
}

/* SITE UPDATES */

#site-updates-header {
  padding-top:10px;
  background:rgba(6, 5, 21, 0.6);
  color:#d97345;
  font-family:"PT Sans", cursive;
  font-weight:600;
  font-size:18px;
  border-radius:10px 10px 0px 0px;
}

#site-updates-header span {
  color:#e9c173;
}

#site-updates-body {
  background:#f1e9e8;
  color:#1b1332;
  border-radius:0px 0px 10px 10px;
  font-family:'Karma', cursive;
  max-height:550px;
  overflow-y:auto;
}

#site-updates-body::-webkit-scrollbar {
  display:none;
}

#examplePost, #examplePost span {
  max-height:200px;
  overflow-y:auto;
  padding:10px;
  background:#f1e9e8;
  color:#1b1332;
}

#examplePost span::-webkit-scrollbar {
  display: none;
}

#examplePost b {
  font-family:'PT Sans', cursive;
}

.aboutme {
    background:rgba(6, 5, 21, 0.6);
    padding:30px;
    margin-top:-20px;
    border-radius:20px;
}

.aboutme #aboutmecard {
    background:#f1e9e8;
    color:#1b1332;
    font-family:'Karma', cursive;
    padding:20px;
}

h3 {
  font-family:'PT Sans', cursive;
  color:#d97345!important;
  font-weight:600!important;
}

h3 span {
  color:#e9c173;
}

#pagedoll {
  background:url(https://f2.toyhou.se/file/f2-toyhou-se/images/94493143_Dxm8cMItXVstXlN.gif);
  background-size:contain;
  height:400px;
}


#footer {
  background:rgba(6, 5, 21, 0.6);
  padding:10px;
  border-radius:20px;
}


#footer .nav-item {
  border-radius:100%;
  width:50px;
  height:50px;
  padding-top:12px;
  padding-left:15px;
  margin:10px;
  background:#1b1332;
  color:#d2d9ea;
  
  transition:0.5s ease-in-out;
}

#footer .nav-item span.hide {
  opacity:0;
  font-size:80%;
  transition-delay:1.5s;
  padding-top:5px;
  transition:1s ease-in-out;
}

#footer .nav-item:hover {
  background:#26366f;
  color:#d2d9ea;
  border-radius:10px;
  width:110px;
  padding-top:10px;
  padding-left:5px;
  padding-right:5px;
  transform:scale(1.1);
}

#footer .nav-item:hover .hide {
    opacity:1!important;
}


/* status cafe */

#statuscafe {
    padding: .5em;
}
#statuscafe-username {
    margin-bottom: .5em;
    font-family:"Hind Gintur", cursive;
    font-size:13px;
    color:#33245e;
}

#statuscafe-username a {
    font-family:"PT Sans", cursive;
    font-weight:600;
    font-size:18px;
    color:#1b1332;
}

#statuscafe-content {
    margin: 0 1em 0.5em 1em;
    font-family:"Karma", cursive;
    color:#33245e;
}

/* sparkles */

#sparkle1, #sparkle2, #sparkle3, #sparkle4, #sparkle5, #sparkle6, #sparkle7, #sparkle8 {
  color:#f1e9e8;
  z-index:-1;
}

#sparkle1 {
  position:absolute;
  top:40px;
  left:180px;
  transform:rotate(34deg);
}

#sparkle2 {
  position:absolute;
  top:120px;
  right:580px;
  transform:rotate(94deg);
}

#sparkle3 {
  position:absolute;
  top:200px;
  right:490px;
  transform:rotate(54deg);
}

#sparkle4 {
  position:absolute;
  top:170px;
  left:790px;
  transform:rotate(47deg);
}

#sparkle5 {
  position:absolute;
  bottom:150px;
  left:210px;
  transform:rotate(10deg);
}

#sparkle6 {
  position:absolute;
  bottom:190px;
  right:110px;
  transform:rotate(0deg);
}

#sparkle7 {
  position:absolute;
  bottom:100px;
  left:160px;
  transform:rotate(70deg);
}

#sparkle8 {
  position:absolute;
  bottom:-100px;
  left:260px;
  transform:rotate(40deg);
}


/* MOBILE RESPONSIVENESS */

@media only screen and (max-width: 600px) {
  
  #site-updates-body {
    max-height:200px;
  }
  
  .aboutme {
    margin-top:20px!important;
    max-height:300px;
  }
  
  .aboutme #aboutmecard {
    max-height:200px;
    overflow-y:auto;
  }
  
  #pagedoll {
    display:none;
  }
}

