html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Inter", sans-serif;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* NOWE STYLE */

:root {
  --color-white: #fff;
  --color-black: #000;
  --primary-color: #565875;
  --primary-color-dark: #3B3C55;
  --cream-light-1: #FBF5E4;
  --beige-light: #DED8C4;
  --cream-light-2: #EDE9DB;
  --cream-very-light: #FDFAF2;
}

/* // 10px = 1rem */
html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h1 em,
h2 em,
h3 em,
h4 em,
h5 em {
  font-family: "Playfair Display SC", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 3.5rem;
}

p {
  font-size: 1.8rem;
  padding-bottom: 1.2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.6rem;
  }
}


@media (max-width: 480px) {
  .wp-block-heading {
    padding: 60px 20px !important;
  }

  body:not(.page-id-18) .has-global-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

input[name="gwolle-gb-write-button"] {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--color-white);
  cursor: pointer;
  border: none;
  transition: opacity 0.3s, transform 0.3s;
}

input[name="gwolle-gb-write-button"]:hover {
  background-color: var(--primary-color-dark);
}

.error_page {
  padding: 6rem;
}

.error_page .btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;
}

.mobile-show {
  display: none;
}

.desktop-show {
  display: block;
}

@media (max-width: 768px) {
  .mobile-show {
    display: block;
  }

  .desktop-show {
    display: none;
  }

}