html {
    box-sizing: border-box;
}

:root{
    --primary-color: #000000;
    --secondary-color: #f08989;
}

body {
    font-family: "Comic Sans MS", "system-ui", "sans-serif";
    font-size: 150%;
    line-height: 135%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    background-image: linear-gradient(#0008, #0008),url("./img/honey.jpg");
    background-position: center, center;
    background-size: cover;
    text-shadow: -1px -1px 0 #851313, 1px -1px 0 #851313, -1px 1px 0 #851313, 1px 1px 0 #851313;
}

h1{
    min-height: 30vh;
}

a{
    color: var(--secondary-color);
}

header{
    line-height: 3em;
    background-color: #88888833;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
