body{
    background-image: url(wood-background.jpg) ;

}

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

.Logo {
   max-width: 25%;
   max-height: 30%;
   padding: auto;
   margin: auto;
   margin-top: 7%;
}   


.Logo img{
    width: 100%;
    height: 100%;
}

.link a{
    text-decoration: none;
    color: white;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    -webkit-transition: 250ms; 
    transition: 250ms; 
    transition-timing-function: ease-in-out;

   opacity: .8;
}

.link a:hover{
   opacity: .6;
   border: 1px solid black;
}

.popup{display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    background: #484444;

}

/* Modal Content */
.sendEmail-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 35%;

}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

.popup input{
    width: 100%;
    padding: 12px 20px;
    margin: 12px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: Century gothic;
    font-size: 15px;
}

.popup textarea{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: Century gothic;
    font-size: 15px;
}

/* Set a style for all buttons */
button {
    background-color: #C0392B;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}


@media screen and (max-width: 600px){  
     .link a{
        padding: 10px;
        font-size: 15px;
        -webkit-transition: 250ms; 
        transition: 250ms; 
        transition-timing-function: ease-in-out;
    }

}