/* Menu */
.fa-bars {
  font-size: 2rem;
  color: #FFF;
}

#main {
  width: 100%;
  background: #545454;
}

#btn-menu {
  display: none;
}

header label {
  display: block;
  width: 30px;
  height: 30px;
  padding: 10px;
  border-right: 1px solid #FFF;
}

header label:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
}

.menu {
  position: absolute;
  background: #FFF;
  width: 100%;
  margin-left: -100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.menu a {
  border-right: 1px solid #b0a46e;
  display: block;
  padding: 15px 20px;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
}

.menu a:last-child {
  border-right: none;
}

.menu a:hover {
  background: rgba(0, 0, 0, 0.3);
}

nav a {
  background-color: #545454;
  display: block;
  border-top: 1px solid #FFF;
}

#btn-menu:checked ~ .menu {
  margin: 0;
}

/* Main Content */
section {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Vollkorn SC", serif;
  margin:15px;
}
p
{
    margin:15px;
}
.name {
  margin-bottom: 0px;
  text-align: center;
}

.subtitle {
  margin-top: 0px;
  text-align: center;
}

#social-media-pages {
  text-align: center;
  display: flex;
  list-style: none;
}
#social-media-pages a {
  color: #b0a46e;
  padding: 10px;
}

/* Accordion */
#examples {
  display: flex;
}

.tab-checkbox {
  position: absolute;
  left: -10000px;
}

.tab-label {
  background-color: #545454;
  width: 100%;
  color: #FFF;
  padding: 20px;
    padding-left:40px;
  margin-left: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px #b0a46e solid;
}

.tab-label::after {
  content: "\25BC";
  margin-right: 20px;
  color: #b0a46e;
}

.tab-content {
  background-color: #fff;
  padding: 20px;
  min-height: 300px;
  display: none;
  width: 100%;
  flex-basis: auto;
  flex-flow: column;
  align-items: center;
}

#tab-one:checked ~ #tab-one-content {
  display: flex;
    flex-flow:column;
}

#tab-two:checked ~ #tab-two-content {
  display: flex;
}

#tab-three:checked ~ #tab-three-content {
  display: flex;
}

#tab-four:checked ~ #tab-four-content {
  display: flex;
}

#tab-five:checked ~ #tab-five-content {
  display: flex;
}

input:checked + .tab-label::after {
  transform: rotateX(180deg);
  color: #FFF;
}

.example {
  padding: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.example img {
  width: 25%;
  height: 25%;
  border: #b0a46e 5px solid;
}

.example-button {
  background-color: #545454;
  color: #FFF;
  text-decoration: none;
  padding: 15px;
  border: #b0a46e 5px solid;
}

.example-button:hover {
  color: #545454;
  background-color: #FFF;
}

/* Work Page Styling */
.work {
  display: flex;
  flex-flow: column;
  align-items:center;
  width: 100%;
}

.work header h2 {
  border-bottom: 2px #b0a46e solid;
}

.imgs {
  display: flex;
  list-style: none;
  align-items: center;
    flex-direction:column;
}

.imgs li {
    
}

.imgs li img {
  width: 100%;
  border: 5px solid #b0a46e;
}

.info li {
  list-style: none;
  border-left: 2px solid #b0a46e;
}

/* Footer Styling */
footer {
  width:100%;
  padding: 10px;
  background-color: #545454;
  color: #FFF;
  border-top: 5px solid #b0a46e;
}
@media only screen and (min-width: 768px) {
  #main label {
    display: none;
  }

  .menu {
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #545454;
    justify-content: center;
    margin: 0px;
    padding: 0px;
  }

  .menu a {
    border-top: none;
  }

  .menu a:last-child {
    border-right: none;
  }

  .menu a:hover {
    background-color: #FFF;
    color: #545454;
  }
}

