header {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 100vw;
    height: auto;
    background-color: #14142a;
    border-image: linear-gradient(to right, #f3aa2d 0%, #de5d27 100%) 1;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
}

#banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    height: auto;
}

header img {
    max-width: 25vw;
}

#banner h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f39e2b;
}

#banner p.quote {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
}

#contact-info {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 5px;
    right: 20px;
    gap: 0.4rem;
    font-family: system-ui, -apple-system, Roboto;
    align-items: right;
}

.contact-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 0px;
    margin-right: 5px;
    color: #ccc;
    padding: 0px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-item a:link {
    color: #ccc;
}
.contact-item a {
    color: #ccc;
    text-decoration: none;
    font-weight: 550;
}
.contact-item a:hover {
    text-decoration: underline;
}

.border {
    display: block;
    border-image: linear-gradient(to right, #f3aa2d 0%, #de5d27 100%) 1;
    border-width: 4px;
    border-style: solid;
}

body {
    margin: 0px;
}

#services-summary {
    background-color: #14142a;
    display: flex;
    align-items: center;
    text-align: center;
    width: 80%;
    height: auto;
    justify-items: center;
    padding: 5px;
    margin: 5px auto;
}

#services-summary p{
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
}

.services {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 2vh;
    
}

.services-name {
    display: flexbox;
    align-items: center;
    align-content: center;
    border-radius: 100%;
    background-color: #f39e2b;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    width: 20%;
    height: 15vh;
    margin: auto;
    padding: auto;
}

.services-description {
    display: flexbox;
    align-items: center;
    align-content: center;
    background-image: linear-gradient(to right, #f39e2b 0%, #14142a 60%);
    width: 70%;
    height: auto;
    margin: auto;
    padding: auto;
}

.services-description p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
}

#about {
    display: flex;
    flex-direction: row;
    background-color: #14142a;
    width: 100vw;
    height: auto;
    align-items: center;
}

#about img {
    height: 25%;
    width: 20%;
}

#about-info {
    display :flexbox;
    text-align: left;
    margin: 3%;

}
#about-info h1 {
    color: #f39e2b;
    font-family: sans-serif;
    font-weight: bold;
}
#about-info p {
    color: #ccc;
    font-family: sans-serif;
    font-style: italic;
}

#contact-footer {
    background-color: #14142a;
    width: 100vw;
    height: auto;
    align-items: center;
    text-align: center;
    color: #ccc;
    margin: 0;
}

#contact-footer p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}