@charset "utf-8";
/* CSS Document
Author: Iman K
Date: 9 October 2023
*/

body {
	padding: 0;
	margin: 0;
	background-color: #E1759E;
	font-family: 'AR One Sans', sans-serif;
	color: #00192E;
}

/* title */
h1 {
	color: #FFF9F1;
	padding: 1%;
	border: solid #00192E;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	background-color: #00192E;
}

/* sub-headings */
h2 {
	color: #FFF9F1;
	padding: 1%;
	border: solid #00192E;
	border-radius: 20px;
	background-color: #00192E;
}

/* text */
.ingredients {
	font-size: 15pt;
}

ol {
  counter-reset: my-counter; /* Initialize a custom counter */
}

ol li {
  list-style-type: none; /* Remove default numbering */
}

ol li::before {
  content: "Step " counter(my-counter) ": ";
  font-weight: bold;
  counter-increment: my-counter; /* Increment the custom counter */
}


/* text */
.instructions {
	font-size: 15pt;
}


/* CHECKBOXES */
/* label */
.ingredient-list {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide default checkbox */
.ingredient-list input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 2px solid #00192E;
  border-radius: 7px;
}

/* hover */
.ingredient-list:hover input ~ .checkmark {
  background-color: #ccc;
}

/* when box is checked */
.ingredient-list input:checked ~ .checkmark {
  background-color: #00192E;
}

/* Create the tick (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ingredient-list input:checked ~ .checkmark:after {
  display: block;
}

/* Style the tick */
.ingredient-list .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* CONTENT */
.container {
	width: 90%;
	margin: 0 auto;
	background-color: #FFF9F1;
	border-radius: 40px;
}

.main {
	min-height: 450px;
	display: flex;
}

.aside-left {
	min-width: 40%;
	min-height: 450px;
	padding: 1%;
	box-sizing: border-box;
}

.aside-right {
	min-width: 60%;
	min-height: 450px;
	padding: 0 1%;
	box-sizing: border-box;
}

.cobbler-img {
	width: 100%;
	height: auto;
	padding: 1%;
}

.bottom {
	padding: 1%;
	box-sizing: border-box;
}