.form-control:focus {
  color: #495057;
  /*background-color: #fff;*/
  border-color: #505050;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(18,18,18,0);
}

.custom-select:focus {
  border-color: rgba(249,194,182,0);
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(240,95,64,0);
}

:target {
  animation: 30s smallerr;
  padding-bottom: 25px;
  padding-top: 50px;
  font-size: 150%;
  transition: 3s;
  /*background-color: rgba(150,148,89,0.27);*/
}

@keyframes smallerr {
  100% {
    font-size: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    padding: 0px;
  }
  99% {
    font-size: 150%;
    padding-bottom: 25px;
    padding-top: 50px;
  }
  0% {
    padding-top: 50px;
    padding-bottom: 25px;
    font-size: 150%;
  }
}

