@charset "UTF-8";
/*הגרה קבועה לעיצוב קופסה*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main {
  background-image: url(../images/2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: soft-light;
  background-position: center center;
  background-attachment: fixed;
  padding: 10%;
  min-height: 100vh;
}

/*החלק של הטקסט בעמוד*/
section {
  background-color: rgba(83, 83, 83, 0.5);
  padding: 20px;
  margin: 20px auto;
  margin-bottom: 10%;
  margin-left: 30px;
  width: 100%;
  height: 200%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

section a {
  color: white;
}

/*עיצוב הפסקה שאחרי הכותרת*/
p {
  font-size: 1em;
  padding-top: 20px;
}

h1,
p::first-letter {
  font-size: x-large;
  text-transform: uppercase;
}

h1 {
  font-family: 'Yatra One', cursive;
  color: #C97428;
}

h3 {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #C97459;
}

main ul {
  padding-left: 30px;
  font-family: 'Poppins', sans-serif;
}

hr {
  border-color: #f3cb76;
  display: block;
  border-width: 1.5px;
}

section p:hover {
  color: rgba(156, 38, 38, 0.925);
}

/*עיצוב אות ראשונה בפסקה בפונט שונה*/
#capitalt::first-letter {
  float: initial;
  width: 0.7em;
  font-size: 300%;
  font-family: 'Lobster', cursive;
  line-height: 60%;
}

.cremepuff {
  background-image: url(/images/Creme-puff-oldest-cat.jpg);
  float: right;
  /* */
  shape-outside: circle(70%);
  shape-outside: circle(100% at 0 0);
  shape-outside: ellipse(50% 40%);
  width: 170px;
  height: 170px;
  -webkit-clip-path: inset(1% 1% 14% 1%);
          clip-path: inset(1% 1% 14% 1%);
  /*עיצוב תמונות עם תבניות של צורות - https://bennettfeely.com/clippy/*/
  background-size: cover;
  margin-right: 20px;
}

@media only screen and (max-width: 700px) {
  section {
    width: 70%;
    margin-top: 30%;
  }
  .cremepuff {
    width: 100%;
    margin-bottom: 30%;
  }
}
/*# sourceMappingURL=index1.css.map */