/* === === === Button === === === */

.Button {
  position: relative;
  display: table;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 20px 10px;
  border: 2px solid #ffffff;
  border-radius: 15px;
  font-size: 1.25rem;
  background-color: transparent;
  color: #ffffff;
  transition: background-color 0.2s,
    color 0.2s;
}

.Button:hover {
    color: var(--font-clr-primary) !important;
  }

.Button:hover {
    background-color: #ffffff;
  }

a.Button {
  cursor: pointer;
}

.Button + .Button {
  margin-top: 10px;
}

.Button--center {
  margin-right: auto;
  margin-left: auto;
}
