h1 {
    font-size: 2rem;
}

#header-section {
    background-color: #101010;
    background: linear-gradient(0deg, rgb(10, 10, 10) 0%, rgb(80, 80, 80) 100%);
}

.section-width {
    max-width: 1024px;
    margin: 0 auto;
}

#header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#site-logo {
    height: 50px;
    padding: 10px 15px;
}

#header-content ul {
    padding: 10px 15px;
}

#header-content ul li {
    display: inline-block;
}

.fa {
    width: 17px;
    font-size: 1rem;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
    color: white;
    border-radius: 50%;
}

.fa-instagram {
    background-color: #dd00f0;
}

.fa-instagram:hover {
    background-color: #3276a8;
}

.fa-youtube {
    background-color: #cc0000;
}

.fa-youtube:hover {
    background-color: #db2020;
}

.fa-facebook {
    background-color: #3b5998;
}

.fa-facebook:hover {
    background-color: #5b79b8;
}

.fa-linkedin {
    background-color: #007bc5;
}

.fa-linkedin:hover {
    background-color: #209bd5;
}

#profile-text {
    font-size: 0.9rem;
    color: white;
}

#login-text {
    font-size: 1rem;
    color: white;
}

.profile-avatar {
    vertical-align: top;
}

#menu-section {
    background-color: green;
}

#menu-content {
    display: flex;
    justify-content: space-between;
}

#menu-content ul li {
    display: inline-block;
    margin-right: -4px;
    padding: 7px 0;
    background-color: #darkgrey;
}

#menu-content ul li.active {
    box-shadow: inset 0 -4px 0 red;
}

#menu-content ul li:hover:not(.active) {
    background-color: #004000;
    box-shadow: inset 0 -4px 0 red;
}

#menu-content ul li a {
    padding: 5px 15px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 15px;
    color: #ffffff;
}

#live-link {
    font-weight: bold;
}

#live-link:hover {
    background-color: red!important;
    color: white!important;
    box-shadow: inset 0 -4px 0 red;
}

.flash {
    color: red!important;
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#live-link:hover span {
    color: white!important;
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes blink {
    0% {opacity: 1;}
    49% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}

#home-section {
    background-color: black;
}

#home-content {
    background-color: lightgray;
    padding: 0 15px;
}

#services-section {
    background-color: white;
}

#services-content {
    background-color: red;
    padding: 0 15px;
}

#quote-section {
    background-color: darkgray;
}

#quote-content {
    background-color: skyblue;
    padding: 0 15px;
}

#pay-section {
    background-color: darkgreen;
}

#pay-content {
    background-color: lightgreen;
    padding: 0 15px;
}

#contact-section {
    background-color: navy;
}

#contact-content {
    background-color: white;
    padding: 0 15px;
}

#profile-section {
    background-color: darkgray;
}

#profile-content {
    background-color: lightgray;
    padding: 0 15px;
}

.centered {
    margin: 0 auto;
}

.content {
    padding: 50px 0;
    min-height: 30vh;
}

#login-section {
    min-height: 50vh;
    padding-top: 5vh;
    padding-bottom: 10vh;
    font-family: Verdana, Arial, sans-serif;
    color: #0030a0;
}

.login-header {
    width: 80%;
    padding: 20px 15px;
    background-color: #e0e0e0;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border: solid gray 1px;
}

.login-form {
    width: 80%;
    padding: 30px 15px;
    background-color: #f9f9f9;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border: solid lightgray 1px;
    border-top: none;
}

.shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.form-group {
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.form-control {
    width: 70%;
    height: 2rem;
    border: solid gray 1px;
    border-radius: 0.5rem;
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 2px;
}

.form-control::placeholder {
    font-size: 1rem;
    color: #b0b0b0;
}

.form-group .button {
    margin: 25px auto 0px auto;
    font-size: 1.5rem;
    background-color: green;
    padding: 8px 25px;
    color: white;
    border: solid darkgreen 2px;
    border-radius: 15px;
}

.form-group .button:hover {
    background-color: #20a020;
    color: ;
    border: solid green 2px;
}