.controller-input {
  text-align: center;
  margin: 35px 0 50px 0;
}

.input-container {
  border: var(--text-color-dark) 2px solid;
  border-radius: 5px;
  width: min-content;
  height: 45px;
  display: flex;
  margin: auto;
  width: 50%;
}

.button-image {
  height: 100%;
}

.input-submit {
  background-color: transparent;
  border: none;
  box-shadow: none;
  align-items: center;
  padding: 5px;
  height: 100%;
  transition-property: background-color;
  transition-duration: 0.2s;
  cursor: pointer;
}

.input-submit:focus {
  background-color: var(--accent-color-dark);
  border: none;
  box-shadow: none;
  align-items: center;
  height: 100%;
  outline: none;
}

.input-submit:hover {
  background-color: var(--accent-color-dark);
  height: 100%;
  outline: none;
}

.big-input {
  background-color: transparent;
  color: var(--text-color-light);
  border: none;
  padding: 0 13px;
  width: 100%;
  font-size: 0.9rem;
}

.big-input:focus-within {
  border: none;
  outline: none;
}

#refresh-button {
  background-color: var(--accent-color-dark);
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 5px;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

@media only screen and (max-width: 900px) {
  .input-container {
    width: 70%;
  }
}

@media only screen and (max-width: 750px) {
  .input-container {
    width: 90%;
  }
  .controller-input {
    margin: 30px 0;
  }
}

@media only screen and (max-width: 300px) {
  .big-input {
    width: 60vw;
  }
}
