a {
    color: inherit;
}

p {
    margin: 0;
}

img {
    object-fit: cover;
    width: 64px;
    height: 64px;
    display: block;
}

.about img,
:host(review-item) img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

:host(review-item) img {
    margin: 20px auto;
}

:host>*,
section>* {
    margin: 20px 0;
}

b,
slot[name="user-name"] {
    white-space: nowrap;
}

:host(cert-item) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

article {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: -10px;
}

article>* {
    margin-right: 30px;
    margin-bottom: 30px;
}

.about article {
    justify-content: start;
}

input,
textarea {
    font-size: inherit;
    font-family: inherit;
    display: block;
    margin: 20px auto;
    border: 0;
    border-radius: 4px;
}

input {
    padding: 10px 20px;
    text-transform: uppercase;
    background: radial-gradient(maroon, #000);
    color: #fff;
}

input:active {
    background: radial-gradient(#000, maroon);
}

::placeholder {
    color: inherit;
    opacity: 0.5;
}

.error::placeholder {
    color: red;
}

.success::placeholder {
    color: green;
}

textarea {
    line-height: 30px;
    padding: 35px 30px 0px 30px;
    resize: none;
    min-height: 150px;
    background-image: -webkit-linear-gradient(top, transparent, transparent 29px, #E7EFF8 0), -webkit-radial-gradient(12px 50%, circle closest-corner, #f5f5f5, #f5f5f5 39%, transparent 0%);
    background-size: 100% 30px;
    width: 100%;
    max-width: 720px;
    box-sizing: border-box;
}

li {
    list-style-type: none;
    margin-right: 30px;
    margin-bottom: 30px;
    flex: 45%;
}

ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: -10px;
}

section.interests {
    font-size: 17px;
}

section.interests strong {
    font-weight: bold;
    text-transform: capitalize;
}

a:hover {
    text-shadow: 0 0 10px yellow;
}