@import '//cdn.staticfile.org/lxgw-wenkai-screen-webfont/1.6.0/lxgwwenkaiscreen.css?ver=6.2.2';
@font-face {
	font-family: 'Galdeano';
	font-style: normal;
	font-weight: 400;
	src: local('Galdeano Regular'), local('Galdeano-Regular'), url("./font-Galdeano.woff") format('woff');
}

@font-face {
	font-family: 'Electrolize';
	font-style: normal;
	font-weight: 400;
	src: local('Electrolize'), local('Electrolize-Regular'), url("./font-Electrolize.woff") format('woff');
}

@font-face {
	font-family: 'Cuprum';
	font-style: normal;
	font-weight: 400;
	src: local('Cuprum'), local('Cuprum-Regular'), url("./font-Cuprum.woff") format('woff');
}

@font-face {
	font-family: 'Codystar';
	font-style: normal;
	font-weight: 400;
	src: local('Codystar'), url("./font-Codystar.woff") format('woff');
}

@font-face {
  font-family: 'Century Gothic';
  src:url("./font-Gothic.ttf") format('truetype');
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Cuprum, "Century Gothic", "LXGW WenKai Screen", sans-serif;
  background: #f1eeed;
}

.top {
  position: relative;
  height: 300px;
  background-color: #333;
  width: 100%;
  max-width: 600px;
  margin: auto;
  color: white;
  background: url(overlay.png), url(stardust.jpg);
  background-repeat: repeat, no-repeat;
  background-position: center;
  background-size: auto, cover;
  border-radius: 0px;
}

.top img {
  position: absolute;
  bottom: -20px;
  right: 10px;
  width: 64px;
  height: 64px;
  border-radius: 15px;
}

#timeline {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.imgavatarclass {
	width: 40px;
	height:40px;	
	margin-bottom: -42px;
	border-radius: 5px;
}

.post {
  background-color: #f5f5f5;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 0px;
  /*box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);*/
}
}

.post img {
  width: 100%;
  border-radius: 5px;
}

.post-content {
  margin-top: 10px;
  margin-left: 50px;
  font-size: 15px;
  color: #333;
  line-height: 28px;
  white-space: pre-wrap;
  word-break: break-all;
}

.post-time {
  color: #eee;
  font-size: 12px;
  margin-top: 10px;
  margin-left: 50px;
  background: #809000;
  display: inline;
  padding: 3px;
  border-radius: 5px;
}

.post-location {
  margin-top:24px;
  font-size: 11px;
  padding-left: 20px;
  background: url(./svg-location.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 16px;
}


.post-footer {
  font-size: 12px;
  color: #555;
  display: flex;
  justify-content: flex-end;
  line-height: 18px;
}

.media-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  margin-left: 50px;
}

.media-container img {
  width: 23%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  margin:10px 0;
}
.video-container {
	width:80%;
	height:auto;
}

#heatmap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  margin: 20px;
}

.month-row {
  display: grid;
  grid-template-columns: repeat(31, 9px);
  gap: 2px;
}

.day {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background-color: #ebedf0;
  transition: background-color 0.5s;
}

.day:hover {
  background-color: #d0d7de;
}

.tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 5px;
  pointer-events: none;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.month-label {
  display: inline-block;
  width: 20px;
  text-align: right;
  margin-right: 10px;
  font-weight: bold;
  font-size: 10px;
  font-family: 'Courier New', Courier, monospace;
}

.month-container {
  display: flex;
  align-items: center;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  border: none;
  outline: none;
  padding: 3px 3px 0 3px;
  background: #8f8f8f00;
  color: #795548;
  cursor: pointer;
  border-radius: 10px;
}

#backToTop:hover {
  background-color: #8f8f8f8f;
  color: #f1f0f0;
  border-radius: 10px;
  transition: all 1s;
}