:root {
  --action-primary: #5aa525;
  --action-primary-dark: #396818; 

  font-family: Lato;
}

* {
  margin: 0px;
  padding: 0px;
  line-height: 1.6rem;
  box-sizing: border-box;
}

h1 {
  font-size: 2rem; 
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 2.6rem;
}

p {
  font-size: 1.1rem;
  font-weight: 400;
}

a {
  all: unset;
  cursor: pointer;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

section .container {
  width: 80vw;
}

.hover-green {
  transition: color 0.3s;
}

.hover-green:hover {
  color: var(--action-primary);
}

.action-button {
  align-self: flex-start;
  display: inline-block;        
  padding: 1rem 2rem; 
  background-color: var(--action-primary);
  color: white;
  font-size: large;
  transition: color 0.5s, background-color 0.5s;
  cursor: pointer;
}

.action-button:hover {
  background-color: black;
  color: white;
}

.primary-green {
  color: var(--action-primary);
}
