/* Basic CSS Reset */
:root {
    --primary: #516558; /* Bootstrap primary color */
    --secondary: #f9f1e4; /* Bootstrap secondary color */
}

.minion {
    font-family: "minion-pro", serif;
    font-weight:400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.5;
    font-family: sans-serif;
    background: #fff;
    color: #222;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}
.bg-primary {
    background-color: var(--primary); /* Bootstrap primary color */
    color: var(--secondary); /* Optional: set text color to white for better contrast */
}
.h-100 {
    min-height: 100%;
}
.w-100 {
    width: 100%;
}
header  {
    width:100%;
    padding:12px 16px;
    text-align: right;
    font-family: "Assistant";
    font-weight:300;
    font-size:14px;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;

}
#logo {
    font-family: "minion-pro", serif;
    font-weight:700;
    font-size:20px;
}
main {
    padding:24px;
}
/* img {
    transform: rotate(-15deg);
} */
span {
    font-size:24px;
    font-family: "Assistant";
    font-weight:300;
    margin:16px;
    text-align: center;
}
p {
    max-width: 400px;
    font-size:16px;
    font-family: "Assistant";
    font-weight:300;
    margin:24px;
    text-align: center;
    line-height:1.4;
}
h1 {
    margin-top:32px;
    max-width: 400px;
    font-size:32px;
    font-family: "minion-pro", serif;
    font-weight:700;
    text-align: center;
    line-height:32px;
}
h2 {
    max-width: 400px;
    font-size:20px;
    font-family: "minion-pro", serif;
    font-weight:700;
    text-align: center;
}
/* div {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;    
    flex-direction: column;
    padding:32px;
    border:2px solid var(--secondary);
    border-radius:16px;
} */