
body {
  background: #f7d5f7 url("/background.gif"); /*Replace with your own background*/
	background-size: 100% 100%;
	background-attachment: fixed;
  background-position: center;
	font-family: "VT-100", fixedsys, System, monospace;
	font-size: 13px;
	margin: 0px;
	color: #fffddd;
	height: 100vh;
  display: flex;
  align-items: center;
}

.content {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.sidebar {
  display: block;
  width: 200px;
}

.sidebox {
  background: #333333E6;
  border-radius: 5px;
  border: 1px solid #1F3E44;
  box-shadow: 2px 2px #1F3E44;
  margin-bottom: 17px;
} 

.title-bar {
  background: #1F3E44;
  font-weight: bold;
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.inner {
  padding: 5px; 
  display: flex;
}

.close-button {
  float: right;
  margin-right: 5px;
  font-family: "Arial", sans-serif;
  line-height: 12px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;  
}

.navlist {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

.navlink {
  color: #fffddd;
  text-decoration: none;
}

.navlink:hover {
  color: #5ae3cb;
}

.inactive {
  text-decoration: line-through;
}

.inactive:hover {
  color: darkgrey;
}

.highlight {
  color: #5ae3cb;
}

#gifypet {
  width: 100%;
  height: 100%;
  zoom: 0.6;
  aspect-ratio: 1 / 1.2;
}

.changelog {
  height: 120px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.changelog p {
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.1;
  padding-bottom: 12px;
}

.tamanotchi {
  padding-left: 17px; 
}

.tamanotchi-label {
  margin: 0;
  margin-top: 5px;
  text-align: center;
}

.mainpage {
  width: 870px; 
  height: 557px;
  padding: 0 17px;
  padding-bottom: 17px;
  
}

.content-container {
  width: 100%; 
  height: 100%;
  overflow: scroll;
  overflow-y: auto;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.music-player {
  height: 75px;
}

.music-controls {
  display: flex;
  margin-top: -5px;
}

.music-control {
  width: 33.3%;
  font-size: 40px;
  text-align: center;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;  
}

.volume-number {
  float: right;
}

.smaller-screen-show {
  display: none;
}

footer {
  padding-top: 4px;
  text-align: center;
}

html::-webkit-scrollbar-track {
  background: #1F3E44;
  border: 3px #333333;
}
 
html::-webkit-scrollbar-thumb { 
  background: #333333E6;
  border: 3px #333333;
}

@media only screen and (max-width: 1650px) {
  body {
  	background-size: auto 100%;
  }
}


@media only screen and (max-width: 1300px) {
  .content {
    height: 100%;
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
    align-items: flex-start;
  }
  
  .mainpage {
    height: auto;
  }
  
  .smaller-screen-show {
    display: block;
  }
  
  .smaller-screen-hide {
    display: none;
  }
}

@media only screen and (max-width: 920px) {
  .content {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    align-items: flex-start;
  }
  
  .mainpage {
    height: auto;
  }
  
  .sidebar {
    display: none;
  }
}
