@charset "UTF-8";

/*Saki Yokota
MAT 165
Assignment #1*/

  /* Normal header style */
  .header_bg {
    width: 100%;
    height: 160px;
    background-image: url("image/oko-header.jpeg");
    background-repeat: repeat-x;
    background-size: contain;
    border: none;
  }
  
  .header_contents {
    width: 1080px;
    /* max-width: 1024px; */
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header_contents h1 {
    top: 180px;
    /* width: 100%; */
    background-color: rgba(234, 221, 201, 0.477);
    font-size: 38px;
    padding: 1rem;
    font-family: "Chalkduster", fantasy;
    text-transform: none;
    color: #691c0d;
    text-shadow: 3px 3px 0.8px #fff8cf;
  }

body {
    width: 100%;
    /* max-width: 1440px; */
    background-color: #fff8cf;
    color: #616058;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 2;
    /* padding: 1%; */
    text-align: justify;
}

strong {
    color: #d52f25;
}

img {
    margin: 20px 1px 1px 1px;
    box-shadow: 4px 4px 4px 4px rgba(105, 86, 52, 0.4);

}


p {
    text-align: center;
}

section {
    font-size: 18px;
    color: #616058;
    padding: 10px 30px 10px 30px;

}

article {
    font-size: 18px;
    color: #616058;
    font-family: sans-serif;
    line-height: 2;
    padding: 15px;
}

.container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 1%;
}

.item {
    margin: 10px;
    width: 50vw;
}

h2 {
    font-family: "Chalkduster", fantasy;
    color: #fff8cf;
    background-color: #499149;
    margin-bottom: 10px;
    padding: 3px 3px 3px 5px;
    border-width: 0px 0px 8px 12px;
    border-style: inset;
    border-color: rgba(26, 63, 28, 0.6);
}

.button {
    font-size: 15px;
    background-color: #d52f25;
    color: #fff8cf;
    border: 6px ridge #9f000c;
    padding: 3px;
    margin: 3px 0 35px;
}

#ingre-list {
    list-style-image: url(image/oko-icon\ [Converted].png);
    list-style-position: inside;
}

#direc-list {
    list-style-position: inside;
}

#tips-list {
    list-style-type: square;
    list-style-position: inside;
}


footer {
    width: 100%;
    height: 90px;
    background-color: #691c0d;
    color: #fff8cf;
    text-align: center;
    font-size: 15px;
    font-family: sans-serif;
    padding: 1%;
    margin-top: 40px;
}