@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
/* CSS Document */

* {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    
}

.top {
    margin-top: 20px;
    min-width: 900px;
    width: 100%;
    height: 100px;
    display: flex;
    flex-flow: row nowrap;
    align-items: baseline;
}

/*----------------Welcome Section-------------------*/

.logo {
    height: 100px;
    width: 300px;
}

h1.welcome {
    font-weight: 300;
    font-size: 30pt;
    text-align: center;
    vertical-align: top;
    
}

.fair {
    color: #20c21f;
    font-style: italic;
}

/*----------------Navigation Section-------------------*/

.nav {
    margin-left: auto;
    align-self: flex-start;
    margin-right: 0;
}

.nav ul {
    min-width: 500px;
}

.nav li {
    display: inline;
    padding: 0 3%;
    margin: 0 3%;
}

.nav a {
    border: 1px solid white;
    border-radius: 7px;
    padding: 10px;
    color: inherit;
    text-decoration: none;
}

.nav a:hover {
    background-color: rgba(109, 109, 109, 0.514);
}

.contactBody .nav a {
    border: 1px solid black;
}

/*----------------Body Section-------------------*/

#index {
    background: rgba(78, 78, 78, 0.234);
    /* background: url("../images/index.jpg");
    background-attachment: fixed;
    background-size: cover; */
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.content {
    margin-top: 60px;
    padding: 0px 10px;
}


.indexBody {
    color: white;
    text-shadow: 2px 2px #000000;
    background: url("../images/index.jpg") rgba(109, 109, 109, 0.614);
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    margin-left: 50px;
    margin-right: 50px;
}


#about {
    background: url("../images/about_cut.jpg")rgba(114, 110, 110, 0.134);
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    margin-left: 8%;
    margin-right: 8%;
}

.aboutBody {
    color: white;
    text-shadow: 2px 2px #000000;
    background: url("../images/about_cut.jpg");
    background-size: cover;
    background-attachment: fixed;
    margin-left: 50px;
    margin-right: 50px;
}

#contact {
    font-weight: bold;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10%;
}

.contactBody {
    color: black;
    background: url("../images/contact_cut.jpg");
    background-size: cover;
    background-attachment: fixed;
    margin-left: 50px;
    margin-right: 50px;
}

.textblock {
    padding: 20px 0;
}

/*
background: #1C6EA4;
background: -moz-linear-gradient(-45deg, #1C6EA4 0%, #2388CB 74%, #144E75 100%);
background: -webkit-linear-gradient(-45deg, #1C6EA4 0%, #2388CB 74%, #144E75 100%);
background: linear-gradient(135deg, #1C6EA4 0%, #2388CB 74%, #144E75 100%);

linear-gradient(135deg, rgb(255, 255, 255) 10%, rgb(32, 32, 34) 10%);
linear-gradient(135deg, rgb(255, 255, 255) 50%, rgb(32, 32, 34) 60%);

    height: 100px;
    background-image: url("../images/LogoCLEAN_transparent.png");
    background-size: cover;


font-family: 'Open Sans', sans-serif;



* {
    font-family: Arial;
    background: rgb(14, 14, 14);
    color: whitesmoke;
}

*/