
body {
  background: url("../../assets/img/bg-taxture.jpg");
  background-size: 100px;
}
.bgimg{
  background: url('../../assets/img/bg.png') #fff7ed ;
  background-size: cover;
  background-position: right top;
}
.bgimg2{
  background: url("../../assets/img/zodiac-circle-with-horoscope-signs-fish-pisces-scorpio-aquarius-zodiak-aries-virgo-vector-illustration.png") black ;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.font1 {
  font-family: "Philosopher", sans-serif !important;
}
.font2 {
    font-family: "Oswald", sans-serif !important;
}
.black{
  color: rgb(92, 51, 0);
}

.clr1 {
  color: #eb6e1f;
}
.bg1 {
  background: #eb6e1f;
}
.bg2 {
  background: #fff7ed;
}
.goldbg {
  background: linear-gradient(45deg, #ffd700, #b8860b, #ffd700, #b8860b);
  position: relative;
  overflow: hidden;
}
.goldbg::before{
  content: "";
  transform: rotate(-45deg);
  height: 200px;
  top: -50px;
  left: -200px;
  position: absolute;
  width: 40px;
  background: linear-gradient(90deg,transparent,white,transparent);
  animation: flash 3s ease-in-out infinite;
}
@keyframes flash{
  from{
    left: -200px;
  }
  to{
    left: 500px;
  }
}
