/* Theme Name: Dolly Alderton
Theme URI: https://www.dollyalderton.com/
Author: Jon @ UXPress
Description: A custom theme built for Dolly Alderton
Version: 1.0 */
:root {
  --black: #202020;
  --darkest-grey: #404040;
  --dark-grey: #606060;
  --grey: #a0a0a0;
  --light-grey: #c0c0c0;
  --lightest-grey: #e0e0e0;
  --white: #ffffff;
  --primary: #FF6700;
  --secondary: #F38CAC;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + *,
.wp-block-column > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

header {
  padding: 1em;
  margin: 0 auto;
  max-width: 50rem;
}

header .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .site-logo {
  text-decoration: none;
}

header .site-logo img {
  width: 12rem;
  margin-bottom: 1rem;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header nav ul li {
  margin: 0 .5em;
}

header nav ul li a {
  font-size: .75em;
  font-weight: bold;
  letter-spacing: .0825rem;
  text-transform: uppercase;
}

header nav ul li a:hover {
  text-decoration: none;
}

:root {
  color: var(--black);
  line-height: 1.5;
  font-size: calc(0.333vw + 1em);
  font-family: 'adobe-caslon-pro', serif;
}

article {
  max-width: 50rem;
  margin: 0 auto;
  padding: 1em;
}

blockquote {
  display: block;
  border-width: 2px 0;
  border-style: solid;
  border-color: #eee;
  padding: 1.5em 0 0.5em;
  margin: 1.5em 0;
  position: relative;
}

blockquote:before {
  content: '\201C';
  position: absolute;
  top: 0em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 3rem;
  height: 2rem;
  font: 6em/1.08em 'PT Sans', sans-serif;
  color: #666;
  text-align: center;
}

cite {
  display: block;
  text-align: right;
  font-size: 0.875em;
  color: #e74c3c;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

a {
  color: inherit;
}

footer {
  padding: 1em;
  margin: 0 auto;
  max-width: 50rem;
  border-top: 1px solid var(--light-grey);
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem 0;
}

.social-list img {
  width: 1.5rem;
}

.social-list li + li {
  margin: 1rem;
}

/*# sourceMappingURL=style.css.map */