/*
Theme Name: Fondation Jethro
*/

:root {
  --bleu: #0057B8;
  --rouge: #D62828;
  --jaune: #F4C430;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  background: var(--bleu);
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
}

/* MENU */
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  background: var(--bleu);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* BOUTON */
.btn {
  background: var(--rouge);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
}

.btn:hover {
  background: var(--jaune);
  color: black;
}