:root {
  --background: #2d3730;
  --main: #E2E6D3;
  --shadow: #5e9e7a;
  --text: #2a5f5e;
}

@font-face {
  font-family: Werbedeutsch;
  src: url("https://files.catbox.moe/5htdxv.ttf");
}

@font-face {
  font-family: Pinscher;
  src: url("https://files.catbox.moe/qo8xvu.otf");
}

body {
  font-family: "Pinscher", sans-serif;
  background-image: url("https://images.unsplash.com/photo-1601463859133-ba124dd44d66?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-repeat: no repeat;
  color: var(--text);
  background-color: var(--background);
  margin: 10%;
}

h2 {
  font-family: "Werbedeutsch";
  font-size: 1.6rem;
  filter: drop-shadow(2px 3px 0px var(--shadow));
}

* {
  box-sizing: border-box;
}

.wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
}

a2:hover {
  background-color: var(--text);
  color: var(--main);
}

.box {
  background-color: var(--main);
  padding: 10px;
  margin-bottom: 10px;
  width: 600px;
}

.buttons {
  justify-content: center;
  gap: 0.75rem;
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
}

.button {
  border-style: solid;
  border-width: 2px;
  border-color: var(--text);
  color: var(--text);
  margin-bottom: 10px;
  padding: 10px;
  width: 100px;
}

.inside {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.list {
  display: flex;
  gap: 2rem;
  justify-content: center;
}