

:root {
  /* colors */
  --app-primary: #4CB963;
  --app-secondary: #F2F2F5;
  --app-white: #ffffff; 
  --app-black: #1B211D;
  --app-navigation: #636363;
}



/* amatic-sc-regular - latin */
@font-face {
    font-family: 'Amatic SC';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/amatic-sc-v24-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
            url('fonts/amatic-sc-v24-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('fonts/amatic-sc-v24-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
            url('fonts/amatic-sc-v24-latin-regular.woff') format('woff'), /* Modern Browsers */
            url('fonts/amatic-sc-v24-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
            url('fonts/amatic-sc-v24-latin-regular.svg#AmaticSC') format('svg'); /* Legacy iOS */
}
/* amatic-sc-700 - latin */
@font-face {
    font-family: 'Amatic SC';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/amatic-sc-v24-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
            url('fonts/amatic-sc-v24-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
            url('fonts/amatic-sc-v24-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
            url('fonts/amatic-sc-v24-latin-700.woff') format('woff'), /* Modern Browsers */
            url('fonts/amatic-sc-v24-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
            url('fonts/amatic-sc-v24-latin-700.svg#AmaticSC') format('svg'); /* Legacy iOS */
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
  color: var(--app-black);
  font-family: 'Amatic SC';
  font-weight: 700;
}

h1, .h1 {
  font-size: calc(2.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 3.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.825rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 3rem;
  }
}

h3, .h3 {
  font-size: calc(2.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 2.75rem;
  }
}

h4, .h4 {
  font-size: calc(2.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 2.5rem;
  }
}

h5, .h5 {
  font-size: 2.25rem;
}

h6, .h6 {
  font-size: 2rem;
}

pre.text{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  line-height: 28px;
  white-space: pre-wrap;
}

.disable-dbl-tap-zoom {
  touch-action: manipulation;
}

#logo{
  width: 180px;
}

#navigation p{
    font-family: 'Amatic SC';
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
}
#navigation ul{
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    margin-bottom: 48px;
}
#navigation ul li{
  margin-bottom: 4px;
}

#navigation ul li a{
  color: var(--app-navigation);
}
#navigation ul li a:link{
  color: var(--app-navigation);
  text-decoration: none;
}
#navigation ul li a:visited{
  color: var(--app-navigation);
  text-decoration: none;
}
#navigation ul li a:hover{
  color: var(--app-primary);
  text-decoration: none;
}
#navigation ul li a:active{
  color: var(--app-primary);
  text-decoration: none;
}

.paper{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background-color: white;
  font-size: 18px;
  padding: 48px 48px 64px 48px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@media only screen and (max-width: 992px) {
  .paper{
    padding: 32px 0px;
    box-shadow: none;
  }
}

.card-img-top{
  height: 200px;
  object-fit: cover;
}
.recipe-image{
  width: 100%;
  height: 350px;
  object-fit: cover;
}