/* GENERAL */

* {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: black;
}

body {
    background-color: rgb(245, 245, 245);
    background-image: url("../img/site/pexels-amir-esrafili-6227715b.jpg");

}

/* HEADER */
.header-top {
    background-color: rgb(33, 46, 46);
    box-shadow: 2px 3px 2px rgba(33, 46, 46, 0.4);
}

.nav-button {
    color: rgb(245, 245, 245);
    border-bottom: 2px solid transparent;
    text-align: center;
    font-variant: small-caps;
}

.nav-button:hover {
    cursor: pointer;
    border-bottom: 2px solid rgb(179, 178, 126);
    color: rgb(179, 178, 126);
    transition-duration: 0.3s;
}

.nav-icon {
    color: white;
}

/* SECTION */
.container-banner-wide {
    /* background-color: rgba(33, 46, 46, 0.9); */
    color: silver;
}

.container-banner-wide:hover {
    background-color: rgba(33, 46, 46, 0.93);
    transition-duration: 0.3s;
}


.style-border-around {
    border: solid 1px rgba(33, 46, 46, 0.8);
}


/* BUTTONS */
.button-active,
.button-passive {
    font-weight: bold;
    font-variant: small-caps;
    font-size: 16px;
    text-align: center;
}

.button-active {
    border: 1px solid transparent;
    background-color: rgb(57, 80, 80);
    box-shadow: 1px 2px rgba(126, 179, 179, 0.4);
    color: rgb(235, 235, 235);
}

.button-passive {
    border: 1px solid rgb(57, 80, 80);
    background-color: transparent;
    box-shadow: 1px 2px rgba(126, 179, 179, 0.4);
    color: rgb(57, 80, 80);
}

.button-active:hover,
.button-passive:hover {
    cursor: pointer;
    color: black;
    border: 1px solid transparent;
    box-shadow: none;
    background-color: rgb(179, 178, 126);
    transition-duration: 0.3s;
}


/* TEXT */
h1 {
    text-align: center;
}

.visible-hyperlink {
    font-style: italic;
    font-weight: bolder;
    color: rgb(72, 100, 100);
}

.visible-hyperlink:hover {
    color: rgb(126, 179, 179);
}

/* FORMS */

input {
    border:rgb(57, 80, 80) 1px solid;
	background-color: rgb(255, 255, 255);
}

input:hover {
    border:rgb(57, 80, 80) 1px solid;
    background-color: rgb(238, 232, 188);
}

input:focus {
    border:rgb(57, 80, 80) 1px solid;
    background-color: rgb(238, 232, 188);
}


/* FOOTER */
footer {   
    color: rgb(57, 80, 80);
    background-color: rgb(33, 46, 46);
    border-top: 1px rgb(16, 22, 22) solid;
}



/* THEMED CONTAINERS */


.container-style-silverlight {
    background-color: rgba(235, 235, 235, 0.9);
    border-bottom: 1px solid rgb(126, 179, 179);
}

.container-style-silverlight:hover {
    background-color: rgba(235, 235, 235, 0.98);
    transition-duration: 0.5s;
}


.container-style-yellow {
    background-color: rgba(238, 232, 188, 0.9);
    border-bottom: 1px solid rgb(126, 179, 179);
}

.container-style-yellow:hover {
    background-color: rgba(238, 232, 188, 0.98);
    transition-duration: 0.5s;
}


.container-style-darkblue {
    color: rgb(190, 190, 190);
    background-color: rgba(33, 46, 46, 0.9);
    border-bottom: 1px solid rgb(126, 179, 179); 
}

.container-style-darkblue>* {
    color: rgb(190, 190, 190);
}
.container-style-darkblue:hover {
    background-color: rgba(33, 46, 46, 0.98);
    transition-duration: 0.5s;
}


.container-style-darkyellow {
	color: rgb(190, 190, 190);
    background-color: rgba(179, 178, 126, 0.9);
    border-bottom: 1px solid rgb(126, 179, 179);
}

.container-style-darkyellow>* {
    color: rgb(190, 190, 190);
}

.container-style-darkyellow:hover {
    background-color: rgba(179, 178, 126, 0.98);
    transition-duration: 0.5s;
}
    
/* STYLES */

