/* 
Theme Name: situPro
Theme URI: http://localhost/situationPro
Author: Nicolas GELIN
Description: Mon premier thème !
Requires at least: WordPress 5.0
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;400;700&display=swap');

@import url("css/menu.css");
@import url("css/global.css");
@import url("css/frontPage.css");
@import url("css/page.css");
@import url("css/archiveDemarches.css");

:root{
    --red: #ed6a5a;
    --darkBlue: #1D1e24;

}

*::selection {
  background-color: var(--red);
  color: white;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    color: black;

  }
  
  html {
    font-family: 'Raleway', sans-serif;
    font-size: 62.5%;
  }

  body {
    font-size: 1.5rem;
  }

  h1 {
    font-weight: 400;
  }

  h2 {
    font-weight: 200;
  }

  button {
    background-color: var(--red);
    border: 2px solid var(--red);
    transition: background 0.2s;

}

button a {
    font-size: 1.5rem;
    display: block;
    padding: 20px 40px;
  }

  button:hover {
    background: transparent;
    transition: background 0.2s;
  }