/* RESET STYLES */

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
    2. Remove default margin
  */
* {
  margin: 0;
}
/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
  /* line-height: 1.5; */
  -webkit-font-smoothing: antialiased;
}
/*
    5. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
    6. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
  font: inherit;
}
/*
    7. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/*
    8. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

:root {
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
}

h1 {
  font-family: 'Reenie Beanie', sans-serif;
}

a,
a:hover,
a:visited,
a:active,
a:focus {
  color: black;
}

a {
  text-decoration: underline;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible {
  outline-color: #1e1488;
  border-radius: 3px;
}

li {
  list-style: none;
}

/* ANIMATIONS LOADER */

@keyframes cube-spin {
  0% {
    transform: rotatex(30deg) rotatey(45deg);
  }
  100% {
    transform: rotatex(30deg) rotatey(405deg);
  }
}

@keyframes cube-explode {
  0% {
    transform: translatez(0.5em);
  }
  50% {
    transform: translatez(0.75em);
  }
  100% {
    transform: translatez(0.5em);
  }
}

hr.wp-block-separator,
hr.wp-block-separator::before,
hr.wp-block-separator::after {
  content: ' ';
  background-color: white;
  border-color: black;
  border-width: 1px;
  border-style: solid;
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 3.2rem auto;
  overflow: visible;
}
hr.wp-block-separator::before,
hr.wp-block-separator::after {
  height: 7px;
  width: 7px;
}

hr.wp-block-separator::before {
  position: relative;
  left: -24px;
  top: 1px;
  display: block;
  margin: 0;
}

hr.wp-block-separator::after {
  position: relative;
  left: 24px;
  top: -6px;
  display: block;
  margin: 0;
}

.wp-block-embed__wrapper iframe {
  width: 100%;
  height: calc((100vw - 16px * 2) * 9 / 16);
  margin: 1.6rem 0;
}

@media screen and (min-width: 576px) {
  .wp-block-embed__wrapper iframe {
    height: calc((100vw - 24px * 2) * 9 / 16);
  }
}

@media screen and (min-width: 992px) {
  .wp-block-embed__wrapper iframe {
    height: calc(1160px * 9 / 16);
  }
}

img {
  width: 100%;
}

p.wp-block-create-block-frenchblock {
  text-align: right;
  margin-left: auto !important;
}

.wp-block-button {
  width: 100%;
}

.wp-block-button__link {
  padding: 8px; 
  text-decoration: none; 
  font-weight: bold; 
  border-radius: 8px; 
  background-color: white;
  color: black;
  border: 1px solid black;
  display: block;
  margin: auto;
  width: fit-content;
  font-size: 2.2rem;
}

.green .wp-block-button__link {
  background-color: #2F5500;
  color: white; 
  border: none;
}

.wp-block-gallery {
  margin-bottom: 2.4rem;
}

