body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    background-color: #d1d1d1
}

/* Global */
.container{
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.bigContainer{
    width: 75%;
    margin: auto;
}

.smallContainer{
    width: 65%;
    margin: auto;
    overflow: hidden;
}

ul{
    margin: 0;
    padding: 0;
}

.linkButton{
    font-size: 12px;
    font-weight: bold;
    color: white;
    border-radius: 12px;
    padding: 10px;
    background-color: #b68640;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    top: -10px;
}

.linkButton:hover{
    background-color: #856231;
}

/* Header */
header{
    background-color: #212121;
    color: #a39696;
    padding-top: 5px;
    min-height: 70px;
    border-bottom: #b68640 3px solid;
}

header a{
    color: #a39696;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

header li{
    display: inline;
    float: left;
    padding: 0 20px 0 20px;
}

header #branding{
    float: left;
}

header #branding h1{
    margin: 0;
}

header nav{
    float: right;
    margin-top: 25px;
    font-family: Georgia;
}

header .highlight, header .current a{
    color: #b68640;
    font-weight: bold;
}

header a:hover{
    color: #cccccc;
    font-weight: bold;
}

/* Showcase */
#showcase{
    background-image: url('../img/showcase.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
}

/* Tagline */
#tagline{
    display: inline-block;
    text-align: center;
    background-color: #212121;
    min-height: 250px;
}

#tagline h2{
    color: #b68640;
}

#tagline p{
    font-size: 16px;
    color: #a39696;
}

/* Boxes */
#boxes{
    margin-top: 0px;
    padding-top: 20px;
    text-align: center;
    background-color: #313131;
}

#boxes .box{
    display: inline-block;
    background-color: #303030;
    border-radius: 15px;
    border-style: solid;
    border-color: #b68540; 
    width: 80%;
    padding: 10px;
    margin: 5px;
    margin-bottom: 30px;
}

#boxes .box h3{
    text-align: center;
    color: #b68640;
}

#boxes .box p{
    text-align: justify;
    text-justify: inter-word;
    color: #a39696;
    font-size: 16px;
}

#boxes .box img{
    float: left;    
    padding: 0px 10px 0px 10px;
    height: 100px;
    width: 100px;
}

/* Footer */

footer{
    padding: 20px;
    margin-top: 0px;
    color: #a39696;
    background-color: #212121;
    border-top:  #b68640 3px solid;
    text-align: center;
}

/* Gallery */

#galleryImages{
    display: inline-table;
    background-color: #212121;
    padding: 20px;
    min-height: 600px;
}

#galleryImages h2{
    text-align: center;
    color: #b68640;
    font-size: 22px;
}

#galleryImages a{
    padding: 10px;
}

#galleryNotLoggedIn{
    background-color: #212121;
    min-height: 600px;
}

#galleryNotLoggedIn h2{
    text-align: center;
    color: #b68640;
    font-size: 22px;
}


/* About Section */

#about{
    width: 100%;
    margin: 0px auto;
    background-color: #212121;
    padding-top: 20px;
    padding-bottom: 20px;
}

#about .block{
    background-color: #303030;    
    border-color: #b68540;          
    text-align: left;
    color: #a39696;
    border-radius: 15px;
    border-style: solid;
    padding: 0px 30px 20px 30px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#about .imageBlock{
    background-color: #303030;    
    border-color: #b68540;        
    text-align: center;
    color: #a39696;
    border-radius: 15px;
    border-style: solid;
    padding: 0px 30px 20px 30px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#about .block h3{
    color: #b68640;
    font-size: 22px;
}

#about .imageBlock h3{
    color: #b68640;
    font-size: 22px;
    text-align: left;
}

#about .block h4{
    color: #b68640;
    font-size: 20px;
}

/* Modal */

#modalBtn {
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    background-color: #b68640;
    border-style: none;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
}

#modalBtn:hover {
    background-color: #303030; 
    border-style: solid;
    border-color: #b68640;
    padding: 3px 8px 3px 8px;
}

.modal {
    display: none;
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.733);
}

.modal-content {
    background-color: #303030;    
    border-color: #b68540;    
    color: #a39696;
    border-radius: 15px;
    border-style: solid;
    margin: 10% auto;
    padding: 10px;
    width: 15%;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 7px 20px 0 rgba(0,0,0,0.17);
    border-radius: 10px;
    animation-name: modelopen;
    animation-duration: 0.3s;
}

.formBox{
    padding: 20px 40px;
}

.formBox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #b68640;
}

.formBox input {
    margin-bottom: 20px;
}

.formBox input[type="text"],
.formBox input[type="password"]
{
    border: none;
    border-bottom: 2px solid #b68640;
    background-color:  #303030;   
    outline: none; 
    height: 30px;
    width: 100%;
    color:#a39696;
}

.formBox input[type="text"]:focus,
.formBox input[type="password"]:focus
{
    border-bottom: 2px solid #ac9b86;
}

.formBox input[type="submit"]{
    border: none;
    outline: none;
    height: 30px;
    color: #ffffff;
    background: #a39696;
    cursor: pointer;
    width: 100%;
}

.formBox input[type="submit"]:hover{
    background:  #9e9d9d;
}
.closeBtn {
    color: #cccccc;
    float: right;
    font-size: 30px;
}

.closeBtn:hover,.closeBtn:focus{
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes modelopen{
    from{opacity: 0}
    to{opacity:1}
}


