/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


/*Silbentrennung aktivieren*/
body{
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
	overflow-x: hidden !important;
	background-color: magenta;
}

html {
	cursor: url(http://schebberds.de/wp-content/uploads/2024/10/schaf5.png),auto;
	background-color: magenta;
}

.fusszeile{
	margin-bottom: 0px!important;
	position:absolute;
    bottom: 10px;
	left: 10px;
	text-shadow: 0px 0px 15px black;
}
.fusszeile1{
	margin-bottom: 0px!important;
	position:absolute;
    bottom: 10px;
	left: 10px;
}

p {
    margin: 0 0 0px; 
}

.schaf {
  position:absolute;
  top:30%;
  left:25%;
  width: 0px;
  animation: orbit 4s forwards infinite;
  animation-timing-function: linear;
}

@-webkit-keyframes orbit {
    from {  -webkit-transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to   {  -webkit-transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@media (pointer: coarse) and (hover: none) {
	.schaf{
		width: 200px;
	}
}














