@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;500;600;700;800;900&display=swap');

:root{
  --bgColor: #eee;
  --textColor: #181818;
}

body {
  background: var(--bgColor);
  font-family: 'Gothic A1', sans-serif;
  color: var(--textColor);
  margin: 0;
  padding: 0;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-container > div {
  width: 100%;
  margin: 10px;
  text-align: center;
  padding: 48px;
}


