/*!
Theme Name: Thresher's Theme
Theme URI: http://underscores.me/
Author: Daniel Thresher
Author URI: http://underscores.me/
Description: Custom theme made by Daniel Thresher for clients. Very light and meant for developers to code websites.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: threshers-theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Thresher\'s Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--black: #000;
	--white: #fff;
	--gold: #D4AF37;
}

 body {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	overflow: hidden;
	width: 100%;
	position: relative;
 }

 html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	position: relative;
 }

 .wrap {
	max-width: 1440px;
	margin: 0 auto;
	width: 90vw;
 }

 .btn {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border: solid 1px var(--gold);
  }