body {
  margin: 0;
  padding: 0;
  background-image: url("background.png");
  background-repeat: repeat;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #5581AC;
}

.title {
  font-weight: 700;
}

.inline {
  display: inline-block;
}

.margin-top-small {
  margin-top: 5px;
}

.margin-top-medium {
  margin-top: 20px;
}

.selected, .text-small {
  color: #FA7800;
  font-size: 12px;
}

.selected-top {
  position: relative;
  color: #FA7800;
  font-size: 12px;
  top: -10px;
}

.lyrics {
  font-style: italic;
}

.main {
  display: flex;
  flex-direction: row;
  font-family: 'Courier New', Courier, monospace;
  width: 100%;
  height: 100vh;
}

.left-side {
  flex: 1;
  padding-top: calc(10% - 60px);
  padding-left: 20px;
  z-index: 99;
}

.right-side {
  display: none;
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 99;
}

.color-square-pink, 
.color-square-teal,
.color-square-purple,
.color-square-orange,
.color-square-yellow,
.color-square-blue
{
  width: 10px;
  height: 10px;
}

.color-square-orange {
  background-color: #FA7800;
  border-top-left-radius: 5px;
}
.color-square-yellow {
  background-color: #DDC441;
}
.color-square-red {
  background-color: #C70117;
}
.color-square-grey {
  background-color: #808080;
}
.color-square-green {
  background-color: #A6A081;
}
.color-square-blue {
  background-color: #5581AC;
  border-bottom-left-radius: 5px;
}

.author {
  font-style: italic;
  color: #808080;
}

.menu-item, .menu-item-top {
  width: 200px;
  padding: 10px;
}

.menu-item {
  border-left: 2px solid #fff;
  font-style: italic;
}

.menu-item-top {
  font-size: 24px;
  border-bottom: 2px solid #929292;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.rounded-border-top {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.rounded-border-bottom {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.menu-item:hover {
  border-left: 2px solid #929292;
  color: #5581AC;
}

.underline {
  text-decoration: underline;
}

.cd-loader {
  position: absolute;
  bottom: 40px;
  left: 60px;
}

.hidden {
  display: none;
}

.center {
  flex: 1;
  padding-top: 10%;
  padding-left: 5%;
}

.content {
  flex: 5;
  overflow: scroll;
  margin: 5%;
  padding: 5%;
  height: 50vh;
  border-left: 1px solid #929292;
}

.relative {
  position: relative;
}

.updates {
  position: absolute;
  bottom: 0;
}

.updates-text {
  padding: 5px;
  color: #808080;
}

.center-image {
  max-width: 100%;
  min-width: 200px;
  border-radius: 5px;
}

.content-top {
  background-color: #B6B6AA;
  height: 30px;
  padding-top: 15px;
  padding-left: 10px;
}

.background-picture {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 50%;
  opacity: 0.2;
  height: auto;
  background-size: contain; /* or cover */
  background-repeat: no-repeat;
}

.close-button {
  width: 20px;
  height: 5px;
  border: 2px solid #929292;
  box-shadow: 2px 2px #606060;
}

#blinking-space {
  font-size: 24px;
  font-weight: 700;
  animation: blink 2s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

#modem-loader {
  position: absolute;
}

.picture-pointer {
  position: relative;
  font-size: 10px;
  color: #FA7800;
  font-weight: 700;
  top: -10px;
}

#mouse-pointer-location {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: #808080;
  font-size: 12px;
}

.top-text {
  margin-top : 0;
}

.messages {
  margin-top: 40px;
}

.input {
  font-family: Arial, sans-serif;
  font-size: 13px;
  padding: 2px 4px;
  height: 20px;
  border: 2px inset #c0c0c0;
  background: white;
  color: black;
}

.expand-button {
  width: 100%;
  height: 25px;
  margin-top: 10px;
  background-color: #f1f1f1;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.expand-button:hover {
  color: #5581AC;
  transform: scale(0.98);
}

.expand-button-text {
  display: block;
  transform: rotate(90deg) scaleY(1.5);
}

.expand-button-text-open {
  display: block;
  transform: rotate(-90deg) scaleY(1.5) ;
}

.button {
  width: 80px;
  font-family: "MS Sans Serif", Arial, sans-serif;
  font-size: 14px;
  padding: 4px 12px;
  height: 30px;
  background: #c0c0c0;
  color: black;
  border: none;
  cursor: pointer;

  /* Classic 3D border */
  box-shadow:
    inset -2px -2px 0 #000,
    inset 2px 2px 0 #fff,
    inset -1px -1px 0 #808080,
    inset 1px 1px 0 #dfdfdf;
}

.button:hover {
  color: #fff;
}

.button:active {
  box-shadow:
    inset 2px 2px 0 #000,
    inset -2px -2px 0 #fff,
    inset 1px 1px 0 #808080,
    inset -1px -1px 0 #dfdfdf;
}

.play-button {
  display: block;
  width: 50px;
  height: 20px;
  text-align: center;
  font-family: "MS Sans Serif", Arial, sans-serif;
  font-size: 14px;
  padding: 4px 12px;
  background: #c0c0c0;
  color: black;
  border: none;
  cursor: pointer;

  /* Classic 3D border */
  box-shadow:
    inset -2px -2px 0 #000,
    inset 2px 2px 0 #fff,
    inset -1px -1px 0 #808080,
    inset 1px 1px 0 #dfdfdf;
}

.play-button:hover {
  color: #fff;
}

.play-button:active {
  box-shadow:
    inset 2px 2px 0 #000,
    inset -2px -2px 0 #fff,
    inset 1px 1px 0 #808080,
    inset -1px -1px 0 #dfdfdf;
}

@media (max-width: 1200px) {
  /* Your styles here */
  .main {
    flex-direction: column;
  }
  .center-image {
    max-width: 200px;
  }
  .content {
    height: auto;
    overflow: visible;
  }
  .updates {
    position: relative;
  }
}