/**
 * Theme Name:        Seb Portefolio
 * Theme URI:         https://sgillig.com/wordpress-themes/sp-theme
 * Description:       Theme used for my personal portefolio
 * Version:           1.0
 * Author:            Sébastien Gillig
 * Author URI:        https://www.sgillig.com
 * Tags:              
 * Tested up to:      6.5.4
 * Requires at least: 6.5.4
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 */

 :root {
  --text-main-color: #181818;
  --color-blue: #47a1ea;
  --color-alpha-factor: 0.9;
  --color-blue-alpha: rgba(71,161,234,var(--color-alpha-factor));
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Psilopgraph';
  src: url('./assets/fonts/Psilograph-ExtraBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

html {
  /* Making rem unit a 10px size*/
  font-size: 62.5%;
}

*,
*::before,
*::after {
  /* Make sure we define each element with there border+padding*/
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  color: var(--text-main-color);
}

.centered-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
