/*
Theme Name: new theme
Theme URI: https://example.com/
Description: A child theme for the Twenty Twenty-Four theme.
Author: Faiz 
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-blue: #011f53;
  --color-pink: #e7654c;
  --color-light-blue: #f2fcff;
  --color-white: #ffffff;
  --color-dark-light-blue: #e9faff;
  --color-bg-white: #ede5e5;
  --color-black: #313131;
  --color-gray: rgb(182, 182, 182, 0.2);
  --gradient-bg: linear-gradient(to right, #011f53, #81382a);
  --banner-gradient-bg: linear-gradient(to bottom, #011f53, #81382a);

  /* fonts  */
  --Alkalami-font: 'Alkalami', serif;
  --Fredoka-font: 'Fredoka', sans-serif;
  --Inter-font: 'Inter', sans-serif;
  --Faustina-font: 'Faustina', serif;
  --Gabarito-font: 'Gabarito', sans-serif;
}

body {
  background-color: white;
  overflow-x: hidden;
}

body a {
  text-decoration: none;
}

strong {
  font-family: var(--Fredoka-font);
  font-size: 20px;
  font-weight: 400;
  padding: 0 5px;
  color: var(--color-black);
}
