@font-face {
    font-family: alt;
    src: url('alt.ttf');
}

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

body {
    font-family: 'alt', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    background-color: wheat;
    color: white;
    text-decoration-thickness: 3px;
}

.top {
    width: 200px;
    background-color: rgb(57, 98, 186);
    margin: 2rem 2rem 0rem 2rem;
    padding: 2rem;
    border: 2px solid white;
    border-radius: 1rem;
}

.recipe-top {
    width: 500px;
    max-width: calc(100vw - 8rem);
    background-color: rgb(57, 98, 186);
    margin: 2rem 2rem 0rem 2rem;
    padding: 2rem;
    border: 2px solid white;
    border-radius: 1rem;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.recipe-header {
    display: flex;
}

.header:hover,
.recipe-header:hover {
    filter: drop-shadow(0px 0px 1px white);
    color: gold;
}

h1 {
    font-weight: 100;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.shen,
.morgan {
    background-size: contain;
    width: 1.5rem;
    height: 1.5rem;
}

.shen:hover,
.morgan:hover {
    filter: drop-shadow(0px 0px 1px white);
}

.shen {
    background-image: url('images/s.png');
}

.shen:hover {
    background-image: url('images/sa.png');
}

.morgan {
    background-image: url('images/m.png');
}

.morgan:hover {
    background-image: url('images/ma.png');
}

::selection {
    color: gold;
}

.content {
    width: 800px;
    max-width: calc(100vw);
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.footnotes {
    width: calc(400px + 1rem);
    max-width: calc(100vw);
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    border: 2px solid white;
    border-radius: 1rem;
    margin-top: 1rem;
    background-color: rgb(231, 197, 74);
}

.recipe {
    width: 200px;
    height: 200px;
    border: 2px solid white;
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2.25rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

a:hover {
    filter: drop-shadow(0px 0px 1px white);
}

.ingredients, .instructions, .blurb {
    border: 2px solid white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    background-color: black;
}

.ingredients {
    background-color: rgb(167, 125, 1);
}

.instructions {
    background-color: olive;
}

.recipe-1, .recipe-top-1, .blurb-1 {
    background-color: rgb(180, 59, 59);
}

.recipe-2, .recipe-top-2, .blurb-2 {
    background-color: rgb(89, 99, 145);
}

.recipe-3, .recipe-top-3, .blurb-3 {
    background-color: rgb(241, 147, 79);
}

.recipe-4, .recipe-top-4, .blurb-4 {
    background-color: rgb(46, 110, 21);
}

.recipe-5, .recipe-top-5, .blurb-5 {
    background-color: rgb(192, 85, 18);
}

.recipe-6, .recipe-top-6, .blurb-6 {
    background-color: rgb(112, 81, 131);
}

img {
    width: 100px;
}

li {
    margin-left: 1.5rem;
    padding-left: 0.5rem;
}

ul li {
    margin-left: 1rem;
    padding-left: 0.5rem;
    list-style-type: '-';
}

.time {
    width: 800px;
    max-width: calc(100vw);
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 2rem 0rem 2rem;
    gap: 1rem;
}

.prep,
.cook {
    padding: 2rem;
    border: 2px solid white;
    border-radius: 1rem;
}

.prep {
    background-color: gold;
}

.cook {
    background-color: gold;
}

.recipe-header img {
    height: 1.5rem;
    width: 1.5rem;
}

.draggable {
    width: 300px;
    max-width: 30vw;
    height: auto;
    border: 2px solid white;
    border-radius: 1rem;
    touch-action: none;
    user-select: none;
    position: fixed;
    z-index: 2;
    right: 2rem;
}

.draggable:hover {
    box-shadow: 0px 0px 10px white;
    cursor: grab;
}

.crossout {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}