/*
Theme Name: Shenberg Theme
Theme URI: https://shenbergs.com
Author: Darja Golubeva
Author URI: https://dgolubeva.com/
Description: A custom WordPress theme for Shenberg Auction.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shenberg-theme
Tags: custom-colors, custom-menu, custom-logo, featured-images, threaded-comments
*/

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --primary-white: #eeeeee;
  --primary-black: #141414;
  --dark-grey: #2f2f2f;
  --light-grey: #bababa;
  --light-green: #c8cdbd;
  --grey-see-through: #2f2f2faf;

  --ff-heading: "Libre Baskerville", serif;
  --ff-body: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  background: none;
  border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  color: var(--primary-white);
  font-weight: 400;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

p,
span,
a,
li {
  font-size: 1rem;
  font-family: var(--ff-body);
  color: var(--primary-white);
}
p {
  line-height: 1.3;
}

.light {
  color: var(--light-green);
}

.dark {
  color: var(--dark-grey);
}

.txt-center {
  text-align: center;
}
