.container {
  position: relative;
  text-align: center;
  color: white;
}

.centered {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
}
.ern {
  background-color: transparent;
  border-width: 2px;
  color: rgb(240, 232, 232);
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.3s;
}

.ern:hover {
  background-color: #3e8e41;
  color: white;
  cursor: pointer;
}