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

@font-face {
    font-family: 'black_jackregular';
    src: url('blackjack-webfont.eot');
    src: url('blackjack-webfont.eot?#iefix') format('embedded-opentype'),
         url('blackjack-webfont.woff2') format('woff2'),
         url('blackjack-webfont.woff') format('woff'),
         url('blackjack-webfont.ttf') format('truetype'),
         url('blackjack-webfont.svg#black_jackregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


* {
    box-sizing: border-box;
}

h1 {
    text-transform: uppercase;
    text-align: center;
    color: green;
    background-color: yellow;
    font-size: 42px;
    font-family: 'Spicy Rice', cursive;
    padding: 10px;
    margin: 20px auto;
    box-shadow: 0px 0px 12px hsla(101, 100%, 57%, 0.75);
}

h2 {
    font-family: 'black_jackregular', cursive;
}

body {
    background-image: url("images/light-grey-terrazzo.png");
}

p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
}

span {
    font-weight: 700;
}

nav a {
    display: inline;
}

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

nav a:hover, nav a:focus {
    color:lightgreen;
    text-decoration: underline;
}

/*nav ul li {
    display: inline;
    list-style-type: none;
}*/

.container {
    margin: auto;
    max-width: 1200px;
    padding: 15px;
    border: 1px solid green; 
}

.content {
    background-color:lightyellow;
    padding: 20px;
    margin: 30px 0 50px;
    border: 2px dashed green;
    box-shadow: 4px 4px 5px hsla(0, 0%, 0%, 0.35);
}

p.green {
    color: green;
}

.large {
    font-size: large;
}

.faq-list li {
    list-style-image: url('images/leaf.gif');
    list-style-position: outside;
}

.right {
    float: right;
    margin-left: 15px;
}

.left {
    float: left;
    margin-right: 45px;
}