:root {
    --primary-color: rgb(26,115,232);
    --avatar-size: 60px;
}

* {
    box-sizing: border-box;
}

html {
    font-family: "Google Sans Text",Arial,Helvetica,sans-serif;
    font-size: 14px;
    color: #333;
}

body {
    margin: 0;
}

h2 {
    margin-block-start: 26px;
}

p {
    line-height: 1.45em;
}

.page {
    max-width: 860px;
    margin: 0 auto;
    padding: 16px;
}

.top-bar {
    background: #eee;
    padding: 8px;
}

.top-bar .back {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

a[href] {
  color: var(--primary-color);
  text-decoration-color: #EEE;
}

a[href]:hover {
    text-decoration-color: var(--primary-color);
}

.hero {
    text-align: center;
}
.hero img {
    max-width: 100%;
}

.introduction > p {
    font-size: 18px;
    color: #666;
}


.products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.product {
    box-shadow: rgba(0,0,0,0.05) 0 10px 40px;
    border-radius: 16px;
    border: 1px solid #EEE;
    padding: 24px;
    max-width: 400px;
}

.product img {
    max-width: 100%;
}

.product h2 {
    margin-top: 0;
}

.btn {
    background:#333;
    color: white;
    padding: 6px 10px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn.primary {
    background: var(--primary-color);
    color: white;
}

.btn:hover {
    box-shadow: rgba(0,0,0,0.08) 0 3px 5px;
}

.btn:active {
    box-shadow: rgba(0,0,0,0.08) 0 -2px 3px inset;
}

.contact .persons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact .person {
    max-width: 400px;
    display: flex;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 16px;
    gap: 8px;
    align-items: center;
}

.contact .person strong {
    font-size: 16px;
}

.contact .person strong,
.contact .person a {
    display: block;
}

.contact .avatar {
    position: relative;
    height: var(--avatar-size);
    width: var(--avatar-size);
    border-radius: var(--avatar-size);
    overflow: hidden;
}

.contact .avatar + div {
    flex: 1;
}
.contact .avatar img {
    width: var(--avatar-size);
    height: var(--avatar-size);
}

.links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding:8px;
}


/**

CMP Pages

**/

.commands ul {
    display: flex;
    padding-inline-start: 0;
    flex-wrap: wrap;
}

.commands li {
    list-style: none;
    padding: 8px;
    margin: 0;
}

dl {
    background: #fcfcfc;
    border: #eee 1px solid;
    border-radius: 16px;
    padding: 16px;
}

dt {
    text-transform: uppercase;
    font-weight: 900;
    color: #999;
    font-size: 10px;
    padding-top: 12px;
}

dt:first-child {
    padding-top: 0;
}

dd {
    margin-inline-start: 0;
    padding: 6px 0;
}