/******** Global Styles ********/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100vw;
  height: 100vh;
  overflow: auto;
}

body {
  background: repeat url("/assets/rainbowstr.gif");
  color: black;
  font-family: monospace;
  height: 100%;
  width: 100%;
}

.layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.copyleft {
  display: inline-block;
  transform: rotate(180deg);
}

/******** Buttons ********/

.btn {
  width: 24px;
  height: 24px;
  background-color: #c0c0c0;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    width: 90px;
    height: 24px;
    margin-right: 4px;
}

/******** Window Styles ********/
.window {
  display: flex;
  flex-direction: column;
  border: 4px ridge;
  padding: 1px 0px;
  width: 95%;
  max-width: 720px;
  height: 580px;
  background-color: #c0c0c0;
}

header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 40px;
  width: 100%;
  background: linear-gradient(to right, #4D00FF, #6A0DAD, #8A2BE2, #483D8B, #4682B4);
  border-bottom: 4px ridge;
  margin-bottom: 12px;
}

#help-window {
  display: none;
}

.content {
  border-top: 4px ridge;
  border-bottom: 4px ridge;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  background-color: #ffffff;
  width: 100%;
  flex-grow: 1;
  justify-content: space-evenly;
}

.gutter {
  border-left: 4px ridge;
  border-right: 4px ridge;
  height: 20px;
  margin-left: 64px;
  margin-right: 64px;
  display: flex;
  justify-content: space-evenly;
}

.text-box {
  gap: 10px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul {
  width: 320px;
}