@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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');

html {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #9c9c9c;
    background-color: #fff6fe;
    line-height: 1.5;
}
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 3.5rem;
    padding: 1rem;
    background-size: cover;
}
.hero.shift {
    height: 50vh;
    min-height: 38rem;
}
.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.3);
}
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero h1 {
    position: relative;
    z-index: 3;
    color: #fff;
}
.content,
footer .inner {
    max-width: 52rem;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}
img {
    max-width: 100%;
}
.hero .logo {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 160px;
    height: 54px;
}
a {
    font-weight: bold;
    color: #f98ced;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
img {
    border-radius: 0.5rem;
}
a:hover {
    color: #34503d;
}
h1 {
    margin: 0;
}
h2,
h3 {
    font-weight: bold;
}
p,
img,
ul,
ol,
h2 {
    margin-bottom: 2rem;
}
footer {
    background-color: #34503d;
    padding: 3rem 0;
}
footer p {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
.linkedin {
    color: #fff;
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
}
.linkedin svg {
    border: 1px solid #fff;
    border-radius: 100%;
    padding: 0.5rem;
    margin-right: 1rem;
    display: block;
}
.linkedin:hover {
    color: #ef70e1;
}
p > code,
li > code {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 0.25rem;
    border-radius: 0.25rem;
}
hr {
    outline: 0;
    border: 0;
    border-top: 1px solid #b2b2b2;
    margin: 2rem 0;
}
pre {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 1rem;
    margin: 2rem 0;
    white-space: break-spaces;
    border-radius: 0.5rem;
}
pre code {
    width: 100%;
    display: block;
}
.hidden-item {
    display: none;
}