@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

body {
  font-family: 'Myriad Pro', 'Roboto Condensed', sans-serif;
  margin: 0;
  background: #fff;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: auto;
  overflow: hidden;
  padding: 0 13rem;
}

h1 {
  font-weight: 400;
  font-size: 2.0rem;
  text-transform: uppercase;
  margin: 0;
}

h2 {
  font-weight: 400;
  font-size: 1.0rem;
  text-transform: capitalize;
  margin: 0;
}


h4 {
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1.5em;
  text-transform: capitalize;
}


p {
  font-size: 1.2rem;
  color: #555;
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: 1.5em;
  margin-right: 2em;
  line-height: 1.6;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.image2 {
  float: right;
  padding: 20px;
  width: auto;
}

main {
  max-width: 1440px;
  margin: auto;
  box-shadow: 30px 0px 40px rgba(0,0,0,0.1),
  -30px 0px 40px rgba(0,0,0,0.1);
}


#landing {
  background: #fff;
}

.landing-text {
  text-align: center;
  position: absolute;
  color: white;
}

#landing-text h2 {
  color: #888;
}

.landing-image {
  background-image: url(http://jkirkrichards.com/homepageimage.jpg);
  background-color: #cccccc;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative
  margin: 0;
}

.landing-image2 {
  background-image: url(http://jkirkrichards.com/gallerywall.jpg);
  background-color: #cccccc;
  background-position: center;
  background-size: cover;
  background-repeat: repeat-y;
  z-index: -1;
  position: relative
  margin: 0;
}



.buttons {
  text-align: center;
  padding: 3rem 2rem;
  margin: auto;
}

.btn {
  padding: .5rem 2rem;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 1rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #e90;
  background-color: #ffffff;
  transition: background 500ms ease;
}

.btn:hover {
  background: #f4f4f4;
  opacity: 0.7;
}

#header {
  padding: 1.5rem;
  text-align: center;
  background: #fff;
  color: #555;
}

#header h2 {
  border-left: dotted 1px #555;
  border-right: dotted 1px #555;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
}

.caption {
  padding: 0.8rem;
  text-align: center;
}

.framed-img {
  max-width: 86%;
  height: auto;
  margin: auto;
  border-radius: 8px;
}

.footer1 {
  text-align: center;
  padding: 1rem 1rem;
  margin: auto;
  color: #333;
  background: #fecc61;
}

.footer2 {
  text-align: center;
  margin: auto;
  color: #888;
  background: #333;
}

.footer3 {
  text-align: center;
  margin: auto;
  color: #888;
  background: #222;
  padding: 2rem 2rem;
}

.socials {
  height: 65px;
  display: inline-block;
  background-color: yellow; 
  list-style-type: none;
  padding: 0;
}

.image-row {
    display: flex; /* Makes the container a flex container */
    justify-content: space-between; /* Distributes images with space between them */
    /* Other justify-content values like 'center', 'space-around' can also be used */
}

button {
  display: inline-block;
  /* Add button styling if needed */
  border: none;
  background: none;
  padding: 0;
  margin: 0px; /* Add margin for spacing between buttons */
}

#wrapper {
  display: flex;
}

#left {
  flex: 0 0 50%;
  padding-left: 1.5rem;
  padding-bottom: 5rem;
}

#right {
  flex: 1;
  padding-right: 5rem;
  padding-bottom: 5rem;
}


/* unvisited link */
a:link {
  color: #666;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #666;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #fc6;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: white;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  margin: auto;
  color: #333;
}

footer h3 {
  font-size: 3rem:
  margin-bottom: 0;
}


