@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --reform-blue: #00B1DA;
}

.playfair-display-regular {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1 {
    margin-top: 0;
}

body {
    margin: 0;
    padding: 10px;
    padding-top: 80px;
}

.header {
    height: 40px;
    position: absolute;
    top:0;
    left:0;
    right:0;
    background: #f0f0f0;
    padding: 15px;
}
.header .name {
    font-size: 30px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.flex-container {
    display: flex;
    width: 85%;
    margin: auto;
}
.flex-column {
    width: 50%;
}
.flex-column div {
    background: #f0f0f0;
    padding: 15px;
    font-size: 20px;
    box-sizing: border-box;
    margin: 10px 5px 10px 5px;
    border-radius: 10px;
    min-height: 50px;
}

.footer {
    height: 20px;
    border-top: 1px solid #333333;
    position: fixed;
    bottom:0;
    left:0;
    right:0;
    padding: 4px;
}