@font-face {
  src: url("montserrat.woff2");
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat", sans-serif;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 125%;
  gap: 16px;
  margin: 0;
  padding: 16px;

  --green-1: #e1fce1;
  --green-2: #0c700c;
  --green-3: #022702;
  --red-1: #e9d5d5;
  --grey-1: #e8e8e8;
  --grey-2: #d3d3d3;
  --grey-3: #a8a8a8;
}

h1 {
  margin: 0;
}

p {
  margin: 0;
}

button {
  padding: 12px;
  font-family: inherit;
  font-size: 16px;
}

button.small {
  padding: 4px;
  font-size: 75%;
}

button.event {
  min-width: 300px;
  padding: 16px 0;
}

button.green {
  background-color: var(--green-1);
  box-shadow: none;
  border: 1px solid var(--grey-3);
  border-radius: 8px;
  /* color: white; */
}

button.red {
  background-color: var(--red-1);
  box-shadow: none;
  border: 1px solid var(--grey-3);
  border-radius: 8px;
  /* color: white; */
}

input[type="text"] {
  font-family: inherit;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--grey-3);
}

.logContainer {
  min-width: 300px;
  font-size: 75%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logEvent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
