/*
Theme Name: JonesSmith
Theme URI: https://nothingatall.net
Author: RJ
Author URI: https://nothingatall.net
Description: Quick n dirty
Tags: Simple
Version: 0.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
Text Domain: jonessmith
*/

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

html, body, p, a, span {
	font-family: 'Montserrat', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

iframe {
	border: solid 2px #302c2c !important; 
}

header {
    background-color: #302c2c;
}

header h1 {
	color: #fff;
	margin: 8px 0 0 32px;
	font-size: 62px;
	font-family: 'Amatic SC', cursive;
}

header h1 span {
	font-size: 8px;
	font-style: italic;
}

h2 {
	font-family: 'Amatic SC', cursive !important;
	font-size: 32px !important;
}

h3 {
	font-family: 'Amatic SC', cursive !important;
	font-size: 24px !important;
}

a {
	color: #000;
	text-decoration: underline;
}

a:hover, .rainbow:hover {
	-webkit-animation:rainbow 1s infinite;
	-ms-animation:rainbow 1s infinite;
	-o-animation:rainbow 1s infinite;
	animation:rainbow 1s infinite;
}

@-webkit-keyframes rainbow {
	0% {color: #ff0000;}
	10% {color: #ff8000;}
	20% {color: #ffff00;}
	30% {color: #80ff00;}
	40% {color: #00ff00;}
	50% {color: #00ff80;}
	60% {color: #00ffff;}
	70% {color: #0080ff;}
	80% {color: #0000ff;}
	90% {color: #8000ff;}
	100% {color: #ff0080;}
}

@-ms-keyframes rainbow {
	0% {color: #ff0000;}
	10% {color: #ff8000;}
	20% {color: #ffff00;}
	30% {color: #80ff00;}
	40% {color: #00ff00;}
	50% {color: #00ff80;}
	60% {color: #00ffff;}
	70% {color: #0080ff;}
	80% {color: #0000ff;}
	90% {color: #8000ff;}
	100% {color: #ff0080;}
}
@-o-keyframes rainbow {
	0% {color: #ff0000;}
	10% {color: #ff8000;}
	20% {color: #ffff00;}
	30% {color: #80ff00;}
	40% {color: #00ff00;}
	50% {color: #00ff80;}
	60% {color: #00ffff;}
	70% {color: #0080ff;}
	80% {color: #0000ff;}
	90% {color: #8000ff;}
	100% {color: #ff0080;}
}
@keyframes rainbow {
	0% {color: #ff0000;}
	10% {color: #ff8000;}
	20% {color: #ffff00;}
	30% {color: #80ff00;}
	40% {color: #00ff00;}
	50% {color: #00ff80;}
	60% {color: #00ffff;}
	70% {color: #0080ff;}
	80% {color: #0000ff;}
	90% {color: #8000ff;}
	100% {color: #ff0080;}
	}

main {
    flex: auto;
    background-color: #fff;
    width: 80%;
	margin: auto;
}

blockquote {
	background: #f9f9f9;
	border-left: 10px solid #302c2c;
	margin: 1.5em 10px 1.5em 0;
	padding: 0.5em 10px;
}

ul {
	list-style: none;
}

li {
	border-left: 10px solid #302c2c;
    margin: 0 10px 2px 0;
    padding: 0.5em 10px;
}

.two-column {
	display: flex;
}

.one-column {
	padding: 25px 50px;
	border-top: solid 5px #302c2c;
    margin-top: 25px;
}

.one-column-buttons {
	padding: 25px 50px;
	border-top: solid 5px #302c2c;
    margin-top: 25px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
}

@media (max-width: 850px) {
	.one-column-buttons {
		flex-direction: column;
	}
}


.one-column-buttons a {
	background-color: #000;
	color: #fff;
	padding: 10px 20px;
	text-decoration: none;
}

.col {
	flex: 50%;
	padding: 50px;
	height: 100%;
}

.col:nth-of-type(1) {
	border-right: solid 5px #302c2c;
}

input, textarea, input[type=password] {
	width: 100% !important;
	border: solid 2px #302c2c !important;
	padding:  0.5em !important;
	border-radius: 0 !important;
}

input[type=password] {
	margin-bottom: 10px;
}

input[type=submit] {s
	width: 100%;
	border: solid 2px #302c2c;
	padding:  0.5em;
	background-color: #302c2c;
	color: #fff;
	font-family: 'Amatic SC', cursive;
	font-size: 24px;
}

input[type=submit]:hover {
	cursor:pointer;
	-webkit-animation:rainbow 1s infinite;
	-ms-animation:rainbow 1s infinite;
	-o-animation:rainbow 1s infinite;
	animation:rainbow 1s infinite;
}

.wpcf7-response-output {
	margin: 0;
}

.wpcf7 .ajax-loader {
	margin: auto;
}

.grecaptcha-badge { 
	visibility: hidden;
}

@media (max-width: 850px) {
	main {
		width: 100%;
	}

	.one-column {
		padding-top: 0;
		border: none;
		margin-top: 0;
	}

	.two-column {
		flex-wrap: wrap;
	}

	.col {
		flex: 100%;
	}

	.col:nth-of-type(1) {
		border-right: none;
		padding: 0 50px;
	}

	.col:nth-of-type(2) {
		padding: 0 50px 50px 50px;
		background-color: #f9f9f9;
	}
}

footer {
    background-color: #302c2c;
    color: #fff;
    font-size: 12px;
}

footer p {
	margin: 4px 0 4px 32px;
}

footer a {
	color: #ccc;
	text-decoration: none;
}

footer a:hover {
	color: #fff;
}




nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav ul li {
  float: left;
}

nav ul li a {
	font-family: 'Amatic SC', cursive;
	font-size: 24px;
	display: block;
	color: white;
	text-align: center;
	padding: 16px;
	text-decoration: none;
}



.gallery {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin: auto;
}

.gallery-item {
    flex: 1 1 auto;
    margin: 0.3em;
    border: 0;
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

@media (max-width: 850px) {
	.gallery-item {
    	width: 80px;
    	height: 80px;
	}
}