:root {
	--green: #658539;
	--purple: #863964;
	--blue: #394C85;
	--yellow: #DCB126;
}

body {
	font-family: 'Commissioner', sans-serif;
	font-size: 1.25rem;
	background-color: #eee;
}

.wrapped {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 5%;
}

.main {
	& .title {
		font-size: clamp(3rem, 8vw, 4rem);
		letter-spacing: -0.05em;
		font-weight: 300;
		margin: 0.5em 0 ;
		color: var(--green);
	}
}

.button {
  text-decoration: none;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #ccc;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
	padding: 0.5em 1em;
	border-radius: 2px;
	font-weight: 600;
	font-size: 1.2rem;
  & span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    background: white;
    color: var(--blue);
    border-radius: 50%;
    line-height: 1;
    font-size: 0.8rem;
  }

	&.blue {
		background-color: var(--blue);
		color: #fff;
    &:hover {
      background-color: black;
    }
	}
  &.green {
		background-color: var(--green);
		color: #fff;
	}
  &.purple {
		background-color: var(--purple);
		color: #fff;
	}
  &.plaintext {
		background: none;
		color: #000;
    border: 1px solid #000;
    &:hover {
      background-color: #ddd;
    }
    & svg {
      fill: #000;
    }
	}
  &.fixed {
    pointer-events: none;
  }
  & svg {
    width: 1.7rem;
    height: 1.7rem;
    fill: #fff;
  }
}
