* {
        box-sizing: border-box;
}

body {
        margin: 0;
        font-family: "URW Gothic";
}

@font-face {
        font-family: Elegant;
        src: url(elegant.otf);
        }

html {
        scroll-behavior: smooth;
        }

p {font-size: 1em}

h1 {
        text-align: center;
        font-size: 3em;
        font-family: "Elegant";
        font-weight: normal;
        }

h2 {
        text-align: center;
        font-size: 1.5em;
        }

hr {
        display: block;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        margin-left: auto;
        margin-right: auto;
        border-style: inset;
        border-width: 1px;
}

.fancy-link {
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	color: blue;
}

.fancy-link:hover {
	text-decoration: none;
	color: red;
}

.fancy-link:active {
	text-decoration: none;
	color: purple;
}

/* Center Text */
#centered {
        text-align: center;
}

.centered_img	{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

/* Responsive Images */
.responsive {
        width: 100%;
        height: auto;
        border: 1px solid;
        border-radius: 10px;
}


/* Responsive Banner Image */
.banner {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 85%;
        height: auto;
}

/* Intro Text */
.blahblah {
        padding: 5%;
        width: 50%;
	margin: auto;
}

.minutia	{
	padding: 5%;
	width:100%;
	margin: auto;
}
/* Audio Player */
audio {
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
}

/* Social Media Bar */
.social {
        width: 100%;
        left: 50%;
        margin-right: -50%;
}


/* Columns */
.column {
        float: left;
        width: 25%;
        padding: 10px;
}

.limited_edition_column {
	width: 25%;
	margin: auto;
	padding: 10px;
}

.nav_column	{
	padding: 10px;
	float: left;
	width: 50%;
}

.arrangements_column	{
	padding: 10px;
	width: 50%;
	float: left;
}

/* Background Color */
#bg {
        background: #dadada;
}


/* Clear floats after the columns */
.row:after {
        content: "";
        display: table;
        clear: both;
}


/* Responsive layout - makes a single column-layout instead of four columns */
@media screen and (orientation: portrait) {
        .column  {
                width: 100%;
        }
	.limited_edition_column	{
		width: 100%;
	}

        .banner {
                width: 100%;
        }

        h1 {
                font-size: 2.5em;
        }

	.nav_column	{
		width: 100%;
        }

	.arrangements_column	{
		width: 100%;
	}
	
	.blahblah	{
		width: 100%;
	}
}

/* Padding for about logo */
.right {
    float: right;
    padding-right: 20px;
}

/* ============================================== Start Gallery Styles ==================================== */
         /* Slideshow container */

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.3);
}


/* Caption text */

.text {
  color: black;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  bottom:20px;
  width: 100%;
  text-align: center;
}

.mySlides {
  display:none;
}

.active-slide {
  display:block;
}

/* Number text (1/3 etc) */

.numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* The dots/bullets/indicators */

.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* =================================================== End Gallery Styles ================================== */


/* ============ Begin Contact Form =================== */

input[type=text], input[type=email], textarea {
    border:1px solid #ccc;
    padding:8px;
    margin:2px 0;
    font-size:13px;
    font-family:Arial, Helvetica, sans-serif;
    color:#8f8f8f;
    width:250px;
    border-radius:5px;
    box-shadow:inset 0 0 8px #e5e8e7;
width: 100%;
}
input[type=submit] {
    border:none;
    padding:8px 25px;
    margin:2px 0;
    font-family:Arial, Helvetica, sans-serif;
    color:#000;
    background:#fff;
    border-radius:5px;
    cursor:pointer;
}
input[type=submit]:hover {
    background:#999;
}

/* ================== End Contact Form =========== */

    .form-container {
      padding: 10px;
      background: #dadada;
      border: none;
      max-width: 420px;
      margin: auto;
    }

}

textarea
{
  height: 200px;
}

