@import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');

@import url("https://use.typekit.net/tfs8jxm.css");

* {
    font-family: 'Times New Roman', Times, serif;
    color: rgb(37, 16, 9);
    box-sizing: border-box;
}

.container {
    max-width: 1024px;
    margin: 15px auto;
    border: 2px solid beige;
    background-color: rgb(223, 223, 185);
    box-shadow: 0 5px 5px 4px hsla(0 0% 0% / 0.65);
}

body {
    background-image: url(images/triangle-mosaic.webp);
}

header img {
    width: 1024px;
    max-width: 100%;
    height: auto;
}

a:link,
a:visited {
    color: beige;
}

a:hover,
a:focus {
    color: white;
}

nav {
    background-color: black;
    padding: 5px;
    margin-top: -5px;
}

nav ul li {
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 10px;
}

nav a:link,
nav a:visited {
    color: beige;
    text-decoration: none;
}

nav a:hover,
nav a:focus {
    color: white;
    cursor: pointer;
}

.faq-list {
    list-style-image: url();
}

main {
    padding: 15px;
}

main p {
    font-size: 1.125em;
    line-height: 1.5625;
}

h1 {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    color: white;
    background-color: black;
}

h1,
h2,
h3 {
    font-family: "Quintessential", serif;
    font-weight: 400;
    font-style: normal;

}

h3,
h4 {
    border-top: 2px black solid;
    padding-top: 5px;
}

.intro::first-letter {
    color: blue;
    font-size: 24px;
    font-weight: bold;
}

footer {
    padding: 15px;
    background-color: black;
    color: beige;
}

footer p {
    color: inherit;
}

.columns {
    column-count: 3;
    column-gap: 40px;
    column-rule: 2px dotted blue;
}

.columns h2 {}

img.right {
    float: right;
    margin-left: 15px;
    border: 5px solid black;
}

img.left {
    float: left;
    margin-right: 15px;
    border: 5px solid black;
}

.left.list-spacer {
    margin-right: 30px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.video {
    clear: both;
    padding-top: 15px;
}