@charset "utf-8";
/****************
Zach Severance
Date Created: 8/7/2020
File: services-stylesheet.css
*****************/

/*** Header Edits ***/
.header {
    background: url(header-image.jpg);
    background-size: cover;
    background-position: center;
}

/*** Services CSS ***/
.services-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-container table {
    width: 100%;
    height: auto;
    background: black;
}

.services-container table tr td {
    color: white;
    padding: 30px;
    border-bottom: solid 2px gray;
    font-size: 20px;
}

.service-name {
    text-align: left;
}

.service-price {
    text-align: right;
}

.service-price a {
    text-align: center !important;
    color: white;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    height: 100%;
}

