* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  line-height: 1.6;
}

@font-face {
  font-family: "OutFit";
  src: url('./../fonts/outfit/Outfit-VariableFont_wght.ttf');
}


@font-face {
  font-family: "YoungSerif";

  font-size: xx-large;
  src: url('./../fonts/young-serif/YoungSerif-Regular.ttf');
}


body {
  font-family: "OutFit";
  color: hsl(30, 10%, 34%);
  background-color: hsl(30, 54%, 90%);
  min-height: 100vh;
  padding: 50px 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.container {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 800px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.omlette-img {
  border-radius: 12px;
  box-shadow: 0px 0px 20px 0px #f3e5d8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}


.omlette-img img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 10px;
}


h1,
h2 {
  font-family: "YoungSerif";
  color: hsl(24, 5%, 18%);
  font-weight: normal;
}

h3 {
  color: hsl(332, 51%, 32%);
}

.note {
  background-color: hsl(330, 100%, 98%);
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  margin: 10px 0;
}


li span {
  color: hsl(30, 10%, 34%);
  font-weight: bold;
}

.note li::marker {
  color: hsl(332, 51%, 32%);
  font-weight: bold;
}

ol,
ul {
  padding-left: 20px;
}

li {
  margin: 15px 0;
  padding-left: 15px;
}

li::marker {
  color: #824b38;
  font-weight: bold;
}

h2 {
  color: hsl(14, 45%, 36%);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.table div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px 15px;
}


.table div div:last-child {
  font-weight: bold;
  color: #824b38;
}

.attribution {
  position: absolute;
  bottom: 0;
  padding: 5px
}

@media only screen and (max-width: 600px) {
  body {
    padding: 0;
    padding-bottom: 50px;
  }

  .container {
    border-radius: 0;
  }

  .omlette-img img {
    width: calc(100% + 80px);
    border-radius: 0;
    margin-top: -40px;
  }
}
