/* PAGE LAYOUT */

body {
    margin: 0;
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat; 
    background-size: cover;
    background-attachment: fixed; 
    background-position: center;
    font-family: 'Montserrat', sans-serif;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #100c10; 
}
::-webkit-scrollbar-thumb:hover {
    background: #717100; 
}

/* NAVIGATION */
.navbar {
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.2);
}
/* INDEX: CAROUSEL */
.carousel slide {
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.2);
}
.carousel-item active {
    transition: 0.1s;
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.2);
}

/* CARDS */
.card {
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.2);
}
.card-body h2, p {
    color: #717100;
}
/* CONTACT: FORM */
.contact-col-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact-col {
	width: 80%;
    padding: 16px;
    margin: 40px;
    color: #ffffff;
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.2);
}
input[type=text], select, textarea {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    border: none;
    margin-top: 4px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: #ffffff;
}
input[type=submit] {
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    background-color: #717100;
}
input[type=submit]:hover {
    background-color: #b6b600;
}
