@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Silkscreen&display=swap');

:root {
  --header-color: #636363;
  --text-color: #9e9e9e;
}

.flex-container {
  display: flex;
  width: 1000px;
  margin: auto;
}

.flex1 {
  width:200px;
  background-color: black; 
  border: 1px solid red; 
}

.flex2 {
  width:200px;
  background-color: black; 
  border: 1px solid red; 
}

.column {
  float: left;
}

.left {
  width: 25%;
  text-align: center;
  font-weight: 700;
}

.right {
  width: 75%;
}

body {
  background-color: rgb(0, 0, 0);
  color: var(--text-color);
  font-family: Verdana;
  background-image: url('images/background.png');
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  font-family: Silkscreen;
  font-size: 3.5em;
}

.navbutton {
  background-color: black; 
  margin: 10px;
  font-size: 30px;
  border: 2px solid red;
  border-radius: 20px; 
  padding-left: 10px;
  padding-right: 50px;
  width: 50px;
}

.navbuttondisabled {
  background-color: black; 
  margin: 10px;
  font-size: 30px;
  border: 2px solid grey;
  border-radius: 20px; 
  padding-left: 10px;
  padding-right: 50px;
  width: 50px;
  cursor: not-allowed;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

strong {
  color:#820000;
}

@keyframes resolveglowy {
  0% {color: #3c00ff;}
  50% {color: #754bff;}
  100% {color: #3c00ff;}
}

.resolve {
  color:#3c00ff;
  animation-name: resolveglowy;
  animation-iteration-count: infinite;
  animation-duration: 4s;
}

.hope {
  color:#158e00;
}

.substitute-button {
  width: 88px;
  height: 31px;
  color: blue;
  text-decoration: none;
  background-image: url("/buttons/blank.gif");
  box-sizing: border-box;
  font-size: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.substitute-button:hover {
  color: blue;
  text-decoration: underline;
  text-shadow: none;
}