/*
color palette
rgb(9, 21, 29) ultra dark blue green
rgb(18, 43, 58) dark blue green
rgb(8, 132, 148) ligh blue green
rgb(189, 191, 193) grey
rgb(163, 0, 0) red
*/

/* GENERAL */
body {
    padding: 0px;
    margin: 0;
    font-family: 'Helvetica';
    background-color: white;
}

p {
    text-align: justify;
    line-height: 1.6;
}

ul {
    line-height: 1.6;
}

a {
    color: rgb(8, 132, 148);
    font-weight: bold;
}

hr {
    height: 2px;
    border-width: 0;
    color:rgb(189, 191, 193);
    background-color:rgb(189, 191, 193);
    width: 45px;
    margin-left:0 ;
}

a:hover {
    color: rgb(18, 43, 58);
}

.affiliate {
    color: rgb(163, 0, 0);
}

.affiliate:hover {
    color: rgba(163, 0, 0, 0.8)
}

.top_banner {
    height: 70px;
    background-color: rgb(18, 43, 58);
    padding-left: 20%;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
}

.logo {
    height: 100px;
    margin-top: -15px;
    padding-left: 20px;
}

.title {
    color: rgb(8, 132, 148);
    font-size: 60px;
    font-weight: bold;
    padding-left: 20px;
}

.menu {
    background-color: rgb(9, 21, 29);
    padding-left: 20%;
    height: 38px;
    display: flex;
}

.page_button {
    background-color: rgb(9, 21, 29);
    color: white;
    width: 100px;
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center; 
    text-decoration-line: none;
}

.page_button:hover {
    color: rgb(8, 132, 148);
}

.main {
    margin-left: 20%;
    margin-right: 20%;
    padding: 20px;
}

.social-btn {
    background-color: rgb(9, 21, 29);
    color: white;
    font-size: 35px;
    border: 0;
    margin-right: 10px;
}

.social-btn:hover {
    color: rgb(8, 132, 148);
}

.twitter-share-button {
    background-color: white;
    color: rgb(0, 172, 238);
    border: 0;
    font-size: 30px;
}

.twitter-share-button:hover {
    color: rgba(0, 172, 238, 0.5);
}

.linkedin-share-button {
    background-color: white;
    color: rgb(0, 119, 181);
    border: 0;
    font-size: 30px;
}

.linkedin-share-button:hover {
    color: rgba(0, 119, 181, 0.5);
}

.quotes {
    background-color: white;
    font-style: italic;
}

.post-overview {
    background-color: rgb(189, 191, 193);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.post-title {
    color: rgb(18, 43, 58);
}

.post-title:hover {
    color: rgb(8, 132, 148);
}

.date {
    font-style: italic;
    margin-top: -15px;
    color: rgb(8, 132, 148);
}

.bottom-banner {
    padding-top: 30px;
    padding-bottom: 50px;
    text-align: center;
    line-height: 30px;
    background-color: rgb(9, 21, 29);
    height: 120px;
}

@media screen and (max-width: 1080px) {
    .main {
        margin-left: 0px;
        margin-right: 0px;
    }

    .title {
        width: 70%;
        font-size: 40px;
        padding-top: 10px;
    }

    .logo {
        height: 60px;
        margin-top: 5px;
    }

    .top_banner {
        padding-left: 0px;
    }

    .menu {
        padding-left: 0px;
    }
}

/* width */
::-webkit-scrollbar {
    width: 18px;
}
  
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px 10px transparent;
    border: solid 3px transparent;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 10px 10px rgb(18, 43, 58);
    border-radius: 9px;
    border: solid 3px transparent;
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 10px 10px rgb(9, 21, 29);
    border-radius: 9px;
    border: solid 3px transparent;
}

.contact-form {
    border: solid 2px rgb(189, 191, 193);
    margin-top: 30px;
    line-height: 1.6;
    font-family: 'Helvetica';
    width: 90%;
    padding-left: 10px;
    padding-right: 10px;
}

.contact-form:focus {
    outline: none;
    border: solid 2px black;
}

#contact-form-name {
    height: 40px;
}

#contact-form-email {
    height: 40px;
}

#contact-form-subject {
    height: 40px;
}

#contact-form-message {
    padding-top: 10px;
}

#contact-form-button {
    height: 40px;
    background-color: rgb(18, 43, 58);
    color: white;
    border: none;
    font-weight: bold;
    font-size: 16px;
    padding: 0px;
    margin-bottom: 20px;
}

#contact-form-button:hover {
    background-color: rgb(8, 132, 148);
    color: rgb(9, 21, 29);
}

form {
    text-align: center;
}