/*
Theme Name: Worqlo
Description: Custom WordPress theme for Worqlo
Version: 1.0
Author: Bonddesign
Text Domain: worqlo
*/

/* Reset and base styles */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* WordPress required classes */
.alignleft {
  float: left;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.9em;
  color: #666;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes spinner-change {
  0% {
    fill: #e95d32;
    transform: rotateZ(0deg);
  }

  20% {
    fill: #f04c1a;
    transform: rotateZ(72deg);
  }

  40% {
    fill: rgb(220, 62, 14);
    transform: rotateZ(144deg);
  }

  60% {
    fill: rgb(203, 64, 21);
    transform: rotateZ(216deg);
  }

  80% {
    fill: #bc4723;
    transform: rotateZ(288deg);
  }

  100% {
    fill: #ee6a41;
    transform: rotateZ(360deg);
  }
}
