/* 
Theme Name: krasodresy
Template: astra
Version: 0.0.1
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;700&family=Barlow+Condensed:wght@400;500&family=Barlow:wght@400;500;700;900&family=Neonderthaw&family=Mea+Culpa&family=Playfair+Display:wght@400;500&display=swap');

/* ******************************************** */

:root * {

  /* fonts */

  --font-fam-main: "Barlow", sans-serif;
  --font-fam-semi: "Barlow Semi Condensed", sans-serif;
  --font-fam-cond: "Barlow Condensed", sans-serif;
  --font-fam-deco: "Playfair Display", sans-serif;
}

:root * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-fam-main);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.414;
  color: white !important; 
  background-color: #000 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-fam-semi);
}

h1 {
  font-weight: 400;
}

a {
  color: white;
  text-decoration: none !important;

  &:visited {
    color: white;
    text-decoration: none;
  }
}

