:root {
  --red: #932923;
  --grey: #919191;
  --darkred: #3a1114;
  --yellow: #f0e370;
  --gradient_green: linear-gradient(#5b7247be, #87a96b, #5b7247c9, #536842ec);
  --gradient_yellow: linear-gradient(#f0e370, rgb(231, 216, 130), #cfc569);
  --gradient_bg: linear-gradient(
    rgb(255, 241, 241),
    rgb(255, 248, 210),
    #fff2f2
  );
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
::selection {
  color: inherit;
  background-color: transparent;
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}

main {
  background: var(--gradient_bg);
}

.darkred {
  background: var(--darkred);
}

.green {
  background: var(--gradient_green);
}

.yellow {
  background: var(--gradient_yellow);
}

body {
  font-size: 17px;

  color: var(--font);
  margin: 0;
  /* padding: 0.5rem; */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}

.capitalize {
  text-transform: capitalize;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: rgb(0, 80, 160);
}

label {
  display: block;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  text-transform: uppercase;
}

input:disabled {
  color: #ccc;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}
