*{
    box-sizing:border-box;
    margin:0;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
    line-height: normal;
}

header {
    background-color: white;
    color: black;
    width: 100%;
    padding:20px;
    text-align: left;
}

header a
{
    text-align: center;
    font-family: "Rubik";
    font-size: 20px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

header a img {
    width: 24px;
    user-select: none;
    pointer-events: none;
    box-sizing: border-box;
    margin-right: 7px;
}

.container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 20px;
}

.post {
    margin-bottom: 2rem;
}

.post h1 {
    margin-top: 0;
    font-size: 51px;
    font-weight: 700;
    text-align: center;
    line-height: 65px;
    letter-spacing: -2px;
}
.post h2{
    color: #000000;
    font-weight: 600;
    font-size: 30px;
    margin-top: 40px;
    display: block;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.post h4{
    color: grey;
     text-align: center;
    font-weight: 400;
}

.post img{
    width: 100%;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    user-select: none;
    pointer-events: none;
    box-shadow: 0px 4px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid rgb(229 229 229);
}

.post p {
    margin: 0.5rem 0 0;
    font-weight: 400;
    font-size: 20px;
}
.post p strong{
    color: #000000;
    font-weight: 600;
    font-size: 30px;
    margin-top: 40px;
    display: block;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.post p small
{
    text-align: center;
    color:grey;
    display: block;
}

.post h3{
    font-size: 18px;
    margin-top: 30px;
    font-weight: 600;
}

.post li{
    font-size: 18px;
}

a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}


th
{
    text-align: left;
}

td
{
    text-align: left;
}

.footerbox
{
width: 100%;
border-top: 0px solid rgba(0, 0, 0, 0.2);
padding: 20px;
padding-top: 50px;
padding-bottom: 50px;
box-sizing: border-box;
display: flex;
justify-content: center;
background-color: #ffffff;
}

.footer
{
width: 1000px;
box-sizing: border-box;
display: grid;
grid-template-columns: auto auto auto auto;
grid-gap:30px;
}

.footerelement h3
{
text-align: center;
font-family: "Rubik";
font-size: 20px;
font-weight: 500;
color: black;
text-decoration: none;
cursor: pointer;
display: flex;
align-items: center;
margin-bottom: 5px;
user-select: none;
}

.footerelement h3 img {
width: 24px;
user-select: none;
pointer-events: none;
box-sizing: border-box;
margin-right: 7px;
border-radius:0;
}

.footerelement h3 a
{
    text-decoration: none;
    text-align: center;
    font-family: "Rubik";
    font-size: 20px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    user-select: none;
}

.footerelement h3 a:hover
{
    text-decoration: none;
}

.footerelement p
{
font-family: 'Rubik',sans-serif;
font-weight:400;
font-size:15px;
color:grey;
}

.footerelement h2
{
font-family: 'Rubik',sans-serif;
font-weight:800;
font-size:15px;
color:grey;
margin-bottom: 10px;
}

.footerelement a
{
font-family: 'Rubik', sans-serif;
font-weight: 500;
font-size: 15px;
color: black;
text-decoration: none;
display: flex;
margin-bottom: 10px;
}

.footerelement a:hover
{
text-decoration: underline;
}

@media screen and (max-width: 1000px) {
    .container{
        margin-top: 20px;
    }
    .post h1{
        font-size:33px;
        line-height: 37px;
        letter-spacing: -1px;
    }
    .footer
    {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footerelement h3
    {
        justify-content: center;
    }
    .footerelement a
    {
        justify-content: center;
    }
}