:root {
    --ff-main: "Akrobat", sans-serif;
    --h1: 900 60px/58px var(--ff-main);
    --h2: 700 50px/48px var(--ff-main);
    --h3: 600 40px/36px var(--ff-main);
    --h4: 500 30px/24px var(--ff-main);
    --paragraph: 500 18px/30px var(--ff-main);
    --button: 400 18px/30px var(--ff-main);
    --menu: 16px/21px var(--ff-main);

    --border-radius: 0.5rem;

    --primary-color: #EA002A;
    --text-color: #000;

}

body{
  font: var(--paragraph);
}

h1, 
.h1{
  font: var(--h1);
  text-transform: uppercase;
}

h2, 
.h2{
  font: var(--h2);
}

h3, 
.h3{
  font: var(--h3);
}

h4, 
.h4{
  font: var(--h4);
}

p{
  font: var(--paragraph);
}

a:hover{
  text-decoration: underline;
  cursor: pointer;
}

.display-1 {
  font-size: 5rem;
}
.display-2 {
  font-size: 4.375rem;
}
.display-3 {
  font-size: 3.75rem;
}
.display-4 {
  font-size: 3.125px;
}
.display-5 {
  font-size: 2.5px;
}
.display-6 {
  font-size: 1.875rem;
}


/* Button styles */

.button-primary {
  padding: .75rem 1rem;
  color: #e5e5e5;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transition: all 200ms ease-in-out;
  display: inline-block;
}
.button-primary:hover {
  color: var(--text-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
}

.button-primary-outline {
  padding: .75rem 1rem;
  color: var(--text-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
  transition: all 200ms ease-in-out;
  border-radius: var(--border-radius);
  display: inline-block;
}
.button-primary-outline:hover {
  color: #e5e5e5;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-white {
  padding: .75rem 1rem;
  color: var(--text-color);
  border-radius: var(--border-radius);
  background-color: #e5e5e5;
  border: 2px solid #e5e5e5;
  transition: all 200ms ease-in-out;
  display: inline-block;
}
.button-white:hover {
  color: #e5e5e5;
  background-color: transparent;
  border: 2px solid #e5e5e5;
}

.button-white-outline {
  padding: .75rem 1rem;
  color: #e5e5e5;
  background-color: transparent;
  border: 2px solid #e5e5e5;
  transition: all 200ms ease-in-out;
  border-radius: var(--border-radius);
  display: inline-block;
}
.button-white-outline:hover {
  color: var(--text-color);
  background-color: #e5e5e5;
  border: 2px solid #e5e5e5;
  display: inline-block;
}

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