/* Write CSS Here */

/* color scheme: uses variables to simplify chamnging scheme */
:root {
    --colorbackground: #0241AD;
    --colorwhite: #FEFFFF;
    --colorblack: #301C05;
    --coloraccent: #F4D47E;
  }


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: #e3e3e3;
    font-family: Verdana;
}

.container {
/*    width: 1000px;
*/
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

nav>a {
    color: var(--colorblack);
    text-decoration: none;
    font: 30px sans-serif;
    /* top right bottom left*/
/*    padding: 10px 10px 10px 30px;    */
    float: left;
}

/* flex container styling */
.navbar {
    height: 60px;
    display: flex;
    justify-content: flex-end;
/*    flex-wrap: wrap;   */
    align-items: center;
    background-color: var(--colorbackground);
  }

.navbar-item {
    list-style: none;
    float: right;
    padding: 0px 20px;
}

.navbar-item>a {
    text-decoration: none;
    font: 20px Verdana, sans-serif;
    color: var(--colorwhite);


}

.navbar>ul:last-child {
    padding-right: 100px;
}

.navbar-item :hover {
    background-color: var(--colorblack);
}

nav::after {
    content: " ";
    display: block;
    clear: both;
    transform:scale(1);
}

/* Navbar End */

/* Banner Start */
.main-banner {
    height: 100%;
}

.main-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner End */

/* Blog Posts Start */
.service {
    background-color: var(--colorbackground);
}

.service>h1 {
    font-size: 30px;
    text-align: center;
    padding: 30px;
    color: var(--coloraccent);
}

/* flex container styling */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--colorbackground);
  }

  .flex-container > div {
    background-color: var(--coloraccent);
    width: 300px;
    margin: 10px;
    text-align: center;
  /*  line-height: 75px; 
    font-size: 30px;  */
  }

.col {
    width: 300px;
    text-align: center;
    margin-left: 20px;
    border-right: solid #bebebe 1px;
    padding-bottom: 30px;
    float: left;
}

.col:last-child {
    border-right: none;
}

.col>h3 {
    /* top-bottom right-left */
    padding: 10px 0px;
    color: var(--colorblack);
}

.col>p {
    padding-bottom: 20px;
}

.col>a {
    background-color: var(--colorbackground);
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    border: solid var(--colorwhite) 2px;
    padding: 5px 10px;
    border-radius: 20px;
}

.col>a:hover {
    background-color: #111111;
    border: solid #111111 2px;
}

.service::after {
    content: " ";
    display: block;
    clear: both;
    transform:scale(1);
}

.blog-post{
    background-color: var(--colorbackground); 
    color: var(--colorwhite);
    margin: 10px;
    padding: 10px;
}
.blog-post p {
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-post ul {
    list-style-type: disc;
/*    
    margin: 10px;
    padding: 10px;
*/
}

.blog-post li {
    margin: 10px;
    padding: 10px;
}

.blog-post a {   
    color: var(--coloraccent);
}

/* Blog Posts End */

/* trying for a fixed position "go back" img */
div.fixed-back {
    position: fixed;
    top: 0;
    left: 0;
  }

/* start of About styling */
.about {
    background-color: var(--colorbackground);
    min-height: 300px;
    text-align: center;
    padding: 20px;
    color: var(--colorwhite);
}

.about>h1 {
    font-size: 30px;
    color: var(--coloraccent);
    padding-bottom: 20px;
}

.about>img {
    border: solid 2px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    object-fit: cover;
}

.about>p {
    font-size: 18px;
    margin: 10px;
    padding-bottom: 10px;
    line-height: 25px;
}

.about>a {
    color: var(--colorwhite);
    font-size: 17px;
    text-decoration: none;
    border: solid var(--colorwhite) 1px;
    padding: 5px 20px;
}

.about>a:hover {
    background-color: #111111;
    border: solid #111111 1px;
}

/* about End */

/* Contact Start */
#contact {
    padding: 30px 0px;
}

.contact {
    background-color: var(--colorbackground);
    min-height: 300px;
    text-align: center;
    padding: 20px;
    color: var(--colorwhite);
}

.contact>h1 {
    font-size: 30px;
    color: var(--coloraccent);
    padding-bottom: 20px;
}

.contact>p {
    font-size: 18px;
    margin: 10px;
    padding-bottom: 10px;
    line-height: 25px;
}

.contact>p a {
    color: var(--coloraccent);
    font-size: 17px;
    padding: 5px 20px;
}
/*
.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-left-col {
    flex-basis: 50%;
    padding-top: 50px;
}

.contact-right-col {
    flex-basis: 50%;
    max-width: 450px;
    margin: auto;
}

.contact-right-col i {
    font-size: 20px;
    padding: 10px;
    background: #089de3;
    color: white;
}

.contact-right-col p {
    margin-top: 10px;
    margin-bottom: 20px;
}
*/
/* Footer Start */
footer {
    background-color: var(--colorbackground);
    text-align: center;
    padding: 10px;
}

footer>small {
    color: var(--colorwhite);
}

footer>small>a {
    color: var(--colorwhite);
    text-decoration: none;
}

/* Footer End */
