@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 844px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #6D6E71;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 3.53em;
    line-height: 1.05;
    background: linear-gradient(to right, #4CC6E0 0%, #009984 66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 3.3em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4CC6E0 0%, #009984 66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article p {
    font-size: 1.7em;
    line-height: 1.3;
    padding-bottom: 1.5rem;
}
.logo {
    padding: 1rem 0.75rem 0.75rem;
    text-align: right;
}
figure {
    position: relative;
}
figure a {
    position: absolute;
    bottom: 6%;
    right: 10%;
    width: 33%;
    height: 60%;
}
article {
    padding: 1rem 0.75rem 0;
}
footer {
    padding: 0 0.75rem;
    font-weight: 500;
}
@media only screen and (max-width:843px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
}