/* @media (prefers-color-scheme: dark) {
    :root {
        --primary-bg: #252627;
        --primary-text: #fff;
        --secondary-text: #fefefe;
        --link-color: #b8bcc0;
    }
    img {
        opacity: 90%;
    }
} */

:root {
    --primary-bg: #fff;
    --primary-text: #353d49;
    --secondary-text: #252627;
    --link-color: rgb(255, 127, 0);
    --shadow-color: rgba(0, 0, 0, 0.15);
    --borders: #555;
}

table {width: 100%; border: 0px; border-collapse: collapse;}
table thead {font-weight: bold;}
table td {padding: 0.6rem 1rem; border-bottom: 1px solid #e8e9eb;}

@media screen and (max-width: 800px) {
  table thead {
    display: none;
  }
  table tr {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e8e9eb;
  }
  table td {
    display: block;
    text-align: left;
  }
  /* table td:before {
     content: attr(aria-label); 
    float: left;
    font-weight: bold;
  } */
}

a {
    position: relative;
    transition: color 0.3s ease;
/*     text-shadow: 1px 1px 15px #ffbc009e; */
}

a:hover, a:focus {
    color: var(--primary-text);
}

.section-title,.entry-title {
    display: block;
    width: 100%;
    overflow: hidden;
    margin: 0 0 25px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 1px
}

.section-title a,.entry-title a {
    color: #333
}

.section-title span,.entry-title span {
    display: inline-block;
    position: relative
}

.section-title span:before,.entry-title span:before,.section-title span:after,.entry-title span:after {
    content: "";
    position: absolute;
    height: 4px;
    top: .53em;
    width: 400%;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc
}

.section-title span:before,.entry-title span:before {
    right: 100%;
    margin-right: 45px
}

.section-title span:after,.entry-title span:after {
    left: 100%;
    margin-left: 45px
}

::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: #585858;
}

form {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--shadow-color);
    border-radius: 10px;
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0 4px 8px var(--shadow-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--link-color);
    outline: none;
}

input[type="submit"] { 
    border: 1px solid var(--shadow-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--shadow-color);
    background-color: #ffffff
}

input[type="submit"]:hover{
    background-color: var(--link-color);
}


select {
    border: 1px solid var(--shadow-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--shadow-color);
}

button {
    width: 100%;
    padding: 10px;
    margin: 15px auto;
    background-color: var(--primary-text);
    color: var(--primary-bg);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--primary-bg);
}



