/* COLOR PALETTE */
/* gold: #f2c145 */
/* mint: #aeffd8 */
/* teal: #73ba9b */
/* coffee: #302008 */
/* linen: #e9e5da */
/* stone: #343330 */


html {
    background: white;
    border-left: 40px solid #F2C145;
    border-right: 40px solid #F2C145;
}

body {
    margin: 40px;
    background: #E9E5DA;
    font-family: "Century Gothic", Arial;
    font-size: 1em;
    color:#302008;
    border-radius: 10px;
}

header {
    background:white;
    padding-top:30px;
    text-align:center;
    line-height:50px;
}

.topnav {
    overflow: hidden;
    background-image: url("images/wood-header.png");
    border-radius: 10px 10px 0px 0px;
}

.topnav a {
    float: right;
    display: block;
    color: #F2C145;
    text-align: center;
    padding: 14px 30px;
    margin: 5px;
    text-decoration: none;
    font-size: 18px;
    font-family: Courier New;
}

.topnav a:hover {
    background-color: #F2C145;
    color: #302008;
}

.topnav .active{
    background-color: #AEFFD8;
    color: #302008;
}

main {
    padding: 30px;
    margin-left: 50px;
    margin-right: 50px;
}

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px;
    font-family: Courier New;
    font-size: 0.5em;
    border: 5px solid #73ba9b;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 6px;
    resize: vertical;
}

input[type=submit] {
    background-color: #73ba9b;
    color: #302008;
    font-family: Courier New;
    font-size: 1em;
    padding: 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #f2c145;
}

.container {
    border-radius: 5px;
    background-color: #302008;
    color: white;
    font-family: Courier New;
    padding: 20px;
    line-height: 1.4;
}

p {
    margin: 30px;
    line-height: 1.4;
    font-size: 24px;
}

h4 {
    text-align: center;
    font-family: Courier New;
    text-decoration: none;
}

.social {
    font-size: 24px;
    color: #73ba9b;
}

footer {
    background-image: url("images/wood-footer.png");
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.prev .next {
    background-color: #73BA9B;
    color: #302008;
    text-decoration-line: none;
    border-radius: 50%;
}

.hover {
    background-color: #AEFFD8;
}

/* Version Table */

.tablecontainer {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 95%;
}

table, tr, th, td {
    background: #E9E5DA;
    color: #302008;
    padding: 8px;
    margin: 5px;
}


th {
    text-align: center;
}


/* Projects Thumbnails */

div.gallery {
    background-color: #73BA9B;
}

div.gallery:hover {
    background-color: #AEFFD8;
    border-radius: 10px;
    opacity: 0.7;
}

div.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.desc {
    padding: 5px;
    text-align: center;
    font-size: 18px;
    font-family: Courier New;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    transition: 0.5s ease;
    opacity: 0;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 6px 6px;
    float: left;
    width: 50%;
    border: 5px solid #E9E5DA;
    border-radius: 14px;
    background-color: #73BA9B;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 90%;
    margin: 10px auto;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}