:root {
    --rose-gold: rgb(222, 193, 159);
}
body {
    font-size: 16px;
    line-height: 30px;
    /* background: radial-gradient(circle at 50% calc(var(--procento, 0) * 1%), #F5F6F6 60%, rgba(145,146,148,0.15) 0); */
    background: var(--rose-gold);
    /* background-image: url(./../img/jtservices-krystal-header-bg.jpg); */
    background: linear-gradient(125deg, rgba(245, 239, 233, 0.55) , rgba(222, 193, 159, 1)), url('./../img/jtservices-krystal-header-bg.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-4);
    max-width: 1200px;
    margin: auto;
    font-weight: 300;
}
h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--color-2);
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
}
h2 {
    color: var(--color-6);
    font-size: 25px;
    margin-top: 40px;
}
h3 {
    font-size: 20px;
    margin-top: 30px;
}
ul {
    flex-direction: column;
    list-style: none;
}
li {
    color: black;
    padding: 5px;
}
a {
    color: var(--gray85);
    text-decoration: underline;
}
a:hover {
    color: var(--dark-gold);
    text-decoration: underline;
}
table {
    border: 1px solid var(--gold);
    border-collapse: collapse;
    width: 100%;
    background-color: white;
}
td, th {
    text-align: left;
    padding: 10px;
}
th {
    background: white;
    color: var(--gold);
    font-weight: 400;
    border-bottom: 1px solid var(--gold);
}
@media screen and (max-width: 1200px) {
    body{
        padding: 0 10px;
    }
}