/* ChelleLynn.com style */


/* General */
* {
  box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

a:link {
  color: #808080;
}

a:visited {
  color: #000000;
}

a:hover {
	color: #ffaca0;
	font-style: italic;
}

body {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 5%;
}

fieldset {
	border: #fff;
}

h1, h2, h3, h4 {
	font-family: sans-serif;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  max-width: 100%;
}

ul {
	list-style-type: none;
}

video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Navigation */
.nav {
    font-family: sans-serif;
	text-align: center;
	text-transform: uppercase;
}

a.nav:link {
	text-decoration: none;
	color: #808080;
}

a.nav:visited {
  color: #808080;
}

a.nav:hover {
	background-color: #ffaca0;
	color: #fff;
	font-style: italic;
}

li.nav {
    display: inline;	
}

.indexnav {
    list-style-type: none;
    font-family: sans-serif;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.2em;
}

li.indexnav {
	margin: 10px;
}

.video {
	text-align:center;
}

/* Textiles */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Writing */
span.subtitle {
	font-size: .9em;
	font-family: serif;
	font-weight: normal;
}

/* About */
.about {
  display: block;
  margin-left: auto;
  margin-right: 25px;
  height: auto;
  max-width: 100%;
}

.small {
  font-family: sans-serif;
  font-size: .9em;
}