/*
   Hands-on Project 12-3
   Author: Maruos Balyos
   Date: May 3, 2026
*/

body {
   margin: 0;
   font-family: Arial, Helvetica, sans-serif;
   background-color: white;
}

main {
   width: 760px;
   margin: 20px auto;
}

header {
   background-color: rgb(67, 125, 184);
   color: white;
   text-align: center;
   padding: 8px 0;
}

header h1 {
   margin: 0;
   font-size: 38px;
   font-weight: normal;
   letter-spacing: 2px;
}

#recipe {
   background-color: rgb(255, 217, 119);
   padding: 15px 45px 35px;
   min-height: 410px;
}

#logo {
   display: block;
   width: 300px;
   margin: 0 auto 20px;
}

article {
   position: relative;
}

article h2 {
   font-size: 20px;
   font-weight: normal;
   margin: 10px 0;
   cursor: pointer;
}

article h2:first-of-type {
   font-size: 28px;
   cursor: default;
}

article h2 img {
   width: 18px;
   vertical-align: middle;
   margin-right: 10px;
}

article p {
   width: 430px;
   font-size: 16px;
   line-height: 1.3;
   margin: 5px 0 15px;
}

#torte {
   position: absolute;
   top: 40px;
   right: 0;
   width: 200px;
   box-shadow: 6px 6px 12px gray;
}

article ul,
article ol {
   margin-left: 35px;
   padding-left: 20px;
   font-size: 15px;
   line-height: 1.45;
   display: none;
}

/* Directions visible first */
article ol {
   display: block;
   width: 520px;
}

footer {
   text-align: center;
   padding: 15px;
}

footer a {
   color: blue;
}

.hidden {
   display: none;
}