html {
    background-color: rgb(31, 31, 31);
    min-height: 100%;
    padding: 0;
    margin: 0;
}

body {
    min-height: 100%;
    padding: 0;
    margin: 0;
}

a,
span,
p {
    color: white;
    text-decoration: none;
}

#footer-container {
    width: 100%;
    display: flex;
    justify-content: right;
}

#footer {
    padding: 4px;
    border-left: 1px solid rgb(105, 105, 105);
    border-top: 1px solid rgb(105, 105, 105);
    gap: 12px;
}

#footer>span {
    font-size: 16px;
    line-height: 20px;
}

.gray-text > a{
    color: rgb(105, 105, 105);
}

.underline {
    text-decoration: underline;
}
 
#services {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.view-service {
    position: relative;
}

.view-service-link {
    transition: all 0.2s;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px 12px 5px 12px;
    font-size: 18px;
    white-space: nowrap;
    border-radius: 10px;
    background: rgba(22, 22, 22, 0.6);
    border: 2px solid rgb(50, 210, 255);
}

.view-service-link:hover {
    padding: 7px 14px 7px 14px;
    right: -2px;
    bottom: -2px;
}

.service-name {
    font-size: 20px;
    font-weight: bolder;
}

.service-description {
    font-size: 18px;
}

.service {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    border: 2px solid rgb(50, 210, 255);
    border-radius: 10px;
    width: 50%;
    min-width: 300px;
}

.service-img {
    border-radius: 20px;
    height: 128px;
    width: 128px;
}

.inline-link {
    color: rgb(250, 250, 250);
    text-decoration: underline;
}

.gray-text {
    color: rgb(105, 105, 105);
}

#header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid rgb(50, 210, 255);
    margin-bottom: 10px;
}

#header-img {
    margin: 5px;
    border-radius: 10px;
    height: 48px;
}

#header-title {
    align-self: center;
    font-size: 32px;
}

.socials {
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    margin: 5px;
}