.button {
  background-color: #00a385; 
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 45px;
  margin: 10px 5px;
  cursor: pointer;
  border-radius: 8px;
 }
 .button:hover {
     background-color: #c60017;
 }
.container .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
  }

  /* TA BORT SCROLLBAR //Jonathan */
body {
  overflow-y: scroll;
  margin: 0px;
  transition: background-color 0.4s ease, color 0.4s ease;
}
/* Chrome, Safari och Opera */
body::-webkit-scrollbar {
    display: none;
}
body {
  -ms-overflow-style: none;  /* IE och Edge */
  scrollbar-width: none;  /* Firefox */
}
@media only screen and (max-width: 500px) {
  .button {
  font-size: 20px;
}
}