@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");

:root {
  --p-font: "Abel", sans-serif;
  --s-font: "Roboto Condensed", sans-serif;
  --t-color: #272727;
  --h-color: #000;
  --f-size-med: clamp(1rem, 2vw, 2rem);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

body {
  min-width: 100vw;
  min-height: 100vh;
  background-color: #e3e3e3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--s-font);
  padding: 50px;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
button {
  font-family: var(--p-font);
}
button {
  border: none;
}
button,
.button {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: var(--f-size-med);
  background-color: black;
  display: inline;
  color: white;
  padding: 12px 16px;
  border-radius: 3px;
  transition: all 0.5s ease;
  border: 2px solid black;
  cursor: pointer;
}

button:hover,
.button:hover {
  background-color: transparent;
  color: black;
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row {
  flex-direction: row;
}

.row {
  flex-direction: column;
}

.hidden {
  display: none !important;
}
