body {
  background-color: black;
  color: #414141;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12pt;
}

.box {
  height: 300px;
  width: 400px;
  background-color: rgb(255, 255, 255);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: 3px solid #999;
  margin-top: 15%;
}

.box::before {
  content: " ";
  position: absolute;
  transform: translate3d(-15px, -15px, 0);
  height: 300px;
  width: 400px;
  border: 3px solid #414141;
  box-sizing: border-box;
  pointer-events: none;
}

.box::after {
  content: " ";
  position: absolute;
  transform: translate3d(15px, 15px, 0);
  height: 300px;
  width: 400px;
  border: 3px solid #e9e9e9;
  box-sizing: border-box;
  pointer-events: none;
}

.main {
    position: absolute;
    height: 300px;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    text-align: center;
    align-items: center;
}

.buttons {
  width: 100px;
  height: 50px;
  display: flex;
  justify-content:center;
  align-items:center;
  margin-left: auto;
  margin-right: auto;
}

a.button {
  z-index: 10;
  margin: 10px;
  padding: 10px;
  box-sizing: border-box; 
  border: 3px solid #e9e9e9;
  font-weight: bold;
  color:#696969;
  background-color: #ffffff;
  transition-duration: 0.4s;
  cursor: pointer;
}

a.button:hover {
  color:#414141;
  border-color: #414141;
}

#list {
  width: 200px;
  height:70px;
  border: 3px solid #e9e9e9;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#e9e9e9;
  font-weight: bold;
}

#moon {
  width:170px;
  height:170px;
  position:absolute;
  top:-70px;
  left:-70px;
}

.biggerbox {
  height: 500px;
  width: 400px;
  background-color: rgb(255, 255, 255);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: 3px solid #999;
  margin-top: 15%;
}

.biggerbox::before {
  content: " ";
  position: absolute;
  transform: translate3d(-15px, -15px, 0);
  height: 500px;
  width: 400px;
  border: 3px solid #414141;
  box-sizing: border-box;
  pointer-events: none;
}

.biggerbox::after {
  content: " ";
  position: absolute;
  transform: translate3d(15px, 15px, 0);
  height: 500px;
  width: 400px;
  border: 3px solid #e9e9e9;
  box-sizing: border-box;
  pointer-events: none;
}

#longer {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-right: 15px;
}
