/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

.grenze-gotisch-<uniquifier> {
  font-family: "Grenze Gotisch", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.texturina-<uniquifier> {
  font-family: "Texturina", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

	body {
    background-color: #ffc0cb;
    color: black;
    font-family: "Texturina", "Times New Roman";
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
	}
		
  #header {
    color: black;
    font-style: italic;
    padding-left: 230px;
    font-size: 70px;
    margin-bottom: 25px;
    letter-spacing: 7px;
    animation: flicker 4s infinite alternate;
  }

  @keyframes flicker {
    0%, 100% {
      text-shadow: 5px 5px #ffffff;
    }
    25%, 75% {        
      text-shadow: 2px 2px #ffffff;
      box-shadow: none;
    }
  }

	.container {
		max-width: 1000px;
		margin-left: 20px;
		position:relative;
	}

	#content {
		border: none;
		padding-top: 18px;
		width:800px;
		margin-left: 300px;
		color: black;
	}

	#sidebar {
    text-align: left;
		float: left;
		width: 200px;
		color: red;
    font-size: 28px;
		will-change: min-height;
	}
        
  #sidebar a:hover {
    font-style: italic;
  }

	#sidebar .sidebar__inner {
		border: none;
		padding: 15px;
		margin-left: 30px;
		position: relative;
		transform: translate(0, 0);
		transform: translate3d(0, 0, 0);
		will-change: position, transform;
	}
	
	.sidebar__inner img {
	  width: 100%;
  height: 100%;
  border-style:dotted;
  border-radius:50%;
  border-width:2px;
  padding:5px;
  object-fit: cover;
  object-position: top;
	  
	}

	.clearfix:after {
		display: block;
		content: "";
		clear: both;
	}
        
  a:link {
    text-decoration: none;
    color: red;
  }
  
  a:hover {
    color: red;
    font-style: italic;
  }  

  a:visited {
    color: red;
  }
  
  .navlink a:link {
    color: red;
  }

  .navlink a:hover {
    font-style: italic;
  }

  .navlink a:visited {
    color: white;
  }

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  #page-title {
    font-size: 30px;
    font-style:italic;
    text-transform: lowercase;
    font-weight:bold;
  }
  
  blockquote {
    background-color:#ffffff;
    padding: 10px;
    border-radius: 10px;
    display:block;
  }
  
  .result {
  display: none;
}

.update {
  float:left;
  width:800px;
  background-color:#FFE6EA;
  padding:10px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.update img {
  margin-right: 10px;
  float:left;
  vertical-align:top;
  width: 150px;
  height: 150px;
  border-style: dotted;
  border-width: 2px;
  border-color: red;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  padding:5px;
}

.dotted {
  border-top:2px dotted red;
  border-bottom:0px;
  border-left:0px;
  border-right:0px;
  }
  
.recipe {
  float:left;
  width:800px;
  overflow:hidden;
}

.recipe img {
  margin-right: 10px;
  float:left;
  vertical-align:top;
  width: 300px;
  height: 300px;
  border-style: dotted;
  border-width: 2px;
  border-color: red;
  padding:5px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px 50px;
}

.ingredients {
  float:left;
  column-count:3;
  column-width:200px;
  column-gap:30px;
  column-rule: 2px dotted red;
  overflow:hidden;
  
} 

.about {
  float:left;
  width:800px;
  overflow:hidden;
}

.about img {
  margin-right: 10px;
  float:left;
  vertical-align:top;
  width: 300px;
  height: 300px;
  border-style: dotted;
  border-width: 2px;
  border-color: red;
  padding:5px;
  object-fit: cover;
  object-position: top;
  border-radius: 15px 50px;
}

h3 {
  column-span: all;
  text-align:left;
  font-style:italic;
  
}
  

  footer {
  font-size:11px;
  text-align:left;
  padding:10px;
  margin-left:60px;
  {
    