/* define css variables */
@import url('https://fonts.cdnfonts.com/css/satoshi');

:root {
    --brand-color: #15ba9b;
    --brand-text: #324C56;
    --brand-lightray: #DBDFE1;
    --brand-darkgrey: hwb(200 86% 24%);
}



* {
    font-family: 'Satoshi', sans-serif;
}

body {
    padding: 16px;
    margin: 0;
}

h1 {
    color: var(--brand-color);
    font-size: 28px;
    line-height: 36px;
    margin-top: 52px;
}

h1 img {
    aspect-ratio: 1272/263;
    width: 433px;
    max-width: 80%;
}

article {
    text-align: center;
}

h2 {
    color: var(--brand-color);
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
    font-weight: 400;
}

aside a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 24px;
}

aside a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 24px;
}

img.service {
    display: block;
    width: 100%;
}

@media screen and (min-width:480px) {
    img.service {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

aside a.eml {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
    margin-top: 20px;
}

aside a.eml:hover {
    text-decoration: underline;
}

aside a.privacy {
    margin-top: 40px;
    font-size: smaller;
    color: var(--brand-darkgrey);
    text-decoration: underline;
}

a.btn {
    margin-top: 40px;
    appearance: none;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    -webkit-appearance: none;
    border: 0;
    text-decoration: none;
    border-radius: 40px;
    padding: 8px 20px;
    font-weight: bold;
    background-color: var(--brand-text);
    color: white;
}

aside a.btn:hover {
    background-color: var(--brand-color);
    transition: all 0.2s;
}