@font-face {
  font-family: "Kalam";
  src: url("/fonts/Kalam-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kalam";
  src: url("/fonts/Kalam-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Kalam";
  src: url("/fonts/Kalam-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    --line-height: 1.4rem;
    --paper-color: #fff6db;
    --img-shadow-color: #0005;
}

body {
    background-color: #d9be97;
    font-family: "Kalam";
    line-height: var(--line-height);
}

h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: calc(0.1 * var(--line-height));
    color: #695c49;
    background-color: var(--paper-color);
    padding: var(--line-height);
    font-size: 2rem;
    border-radius: 0.5rem 0.5rem 0 0;
    line-height: calc(2 * var(--line-height))
}

ul {
    list-style: none;
    margin: 0 1rem;
    
    li {
	position: relative;
	padding-left: 1rem; 
	color: #3b3b3b3;
	font-size: calc(0.7 * var(--line-height));
	line-height: var(--line-height);
    }
}

p {
    margin-left: 1.5rem;
    margin-top: var(--line-height);
    margin-bottom: 0;
    padding: 0 1rem;
}

.overview {
    margin-top: calc(var(--line-height) + 0.1 * var(--line-height));
}

a {
    color: #3b3b3b;
    text-decoration: none;
}


li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #695c49; 
}

.center {
    display: flex;
    justify-content: center;
}

.site-content {
    box-shadow: 1em -1em 2em 0 rgba(0,0,0,.3);
    background-color: white;
    margin:2em;
    padding-bottom: var(--line-height);
    position: relative;
    border-radius: 0.5rem;
    max-width: 80rem;
    background: repeating-linear-gradient(#78BAF3 0 1px,var(--paper-color) 0 var(--line-height)) right bottom /100% 100%;
}

.recept-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.has-image {
    min-height: calc(13 * var(--line-height));
}

.suroviny {
    margin-right: auto;
    flex-grow: 1;
    
    li {
	margin-bottom: 0;
    }
}

img {
    height: 15rem;
    transform: rotate(5deg);
    box-shadow: 0 0 2em var(--img-shadow-color);
    margin: 1rem 4rem;
}

.recept {
    display: flex;
}

table {
    min-width: 20em;
    background-color: #f1ddc0;
    border: 1px solid #695c49;
    border-radius: 0.3em;
    border-collapse: collapse;
}
table tr:not(:last-child) td {
    border-bottom: 1px solid #695c49;
}

table td:not(:last-child) {
    border-right: 1px solid #695c49;
}

table tr {
    padding: 0;
    margin: 0;
}

table td {
    padding: 0.6em 1em;
    margin: 0;
}
