@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
* {
    box-sizing: border-box;
    font-family: 'Libertinus Serif', serif;
    margin: 0;
}
html {
    background-color: #F3F4F4;
}
.body {
    width: 40%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2C2C2C;
    font-size: 1.5rem;
}
.body > * {
    margin: 0.2rem 0;
}
hr {
    border: 0;
    border-top: 2px solid #853953;
}
a {
    color: #612D53
}
.header {
    display: flex;
    justify-content: space-between;
    width:100%;
}
.header-left {
    width: 35%
}
.header-right {
    width: 65%;
}
.header-right {
    text-align: right;
}
.footer {
    display: flex;
    justify-content: space-between;
}
.footer-left {
    width: 70%;
    text-align: left;
}
.footer-right {
    width: 30%;
    text-align: right;
}