@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');
* {
direction: rtl;
}

.all-contents p {
  font-family: "Baloo Bhaijaan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;	
}

.all-contents h1, h2, h3 {
	
  font-family: "Lalezar", sans-serif;
  font-weight: 400;
  font-style: normal;	
}


button.youtube-button {
  font-family: "Baloo Bhaijaan 2", sans-serif;
  font-size: 18px;
  background: linear-gradient(to bottom, #ff0000 0%, #ff5050 100%);
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

button.youtube-button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

button.youtube-button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

button.youtube-button span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

button.youtube-button svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

button.youtube-button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

button.youtube-button:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

button.youtube-button:hover svg {
  transform: rotate(45deg);
}
