html{
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

body{
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("/img/background.png");
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Noto Sans';font-size: 22px;
}

.input-div{
  text-align: center;
  align-content: center;
  margin-bottom: 1rem;
  margin-left: 30%;
  margin-right: 30%;
}

.header-logo {
  text-align: center;
  align-content: center;
  color: whitesmoke;
}

.logo {
  width: 30%;
  margin: 1.75rem;
}

#game-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.guess-box {
  border: 2px solid lightgray;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  margin: 3px;
  font-size: 0.8rem;
  font-weight: bolder;
  color: white;
  height: 7rem;
  width: 7rem;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  text-transform: uppercase;
}

.guess-row{
  display: flex;
}

.guess-red{
  background-color: #ff164b;
}

.guess-green{
  background-color: #18bf2e;
}

.warframe-icon-name{
  border: 2px solid lightgray;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: bolder;
  padding: 5px;
  color: white;
  text-transform: uppercase;
  position: absolute;
}

.tenno-input{
  box-sizing: border-box;
  display: block;
  width: 100%;
  border: 3px solid currentColor;
  padding: calc(0.5rem * 1.5) 0.5rem;
  color: lightgrey;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3rem;
  text-align: center;
  font-family: 'Noto Sans';
  font-weight: bold;
  &:focus{
    border: 3px dashed currentColor;
    background: rgba(0, 0, 0, 0.7);
  }

  transition: all 0.1s ease-in;
}
