

body {
  color: var(--color-cypress);
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: 'Figtree', sans-serif;
}

/* Layout */

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  flex-basis: 100%;
  flex: 1;
}


/* Reset */

input,
button{
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-size: 1rem;
  font-family: 'Figtree', sans-serif;
}

button {
  cursor:pointer;
}

a {
  color:var(--color-lime);
  font-weight: 600;
  border-bottom: 1px solid var(--color-lime);
  text-decoration: none;
}

/* CSS variables*/
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-transparent:rgba(0, 0, 0, 0);
  --color-cypress: #1C4650;
  --color-gray: #6E6E6E;
  --color-mid-gray: #D2D2D2;
  --color-light-gray: #F2F2F2;
  --color-steel: #14252D;
  --color-lime: #5fce84;
  --color-red: #DA5847;

  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 20px;
}


@media (max-width: 640px) {
  .row {
    flex-direction: column;
  }
}