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

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

#float-element {
  position: relative;
  top: 0;
  transition: top ease 0.5s;
  
}
#float-element:hover {
  top: -10px;
  box-shadow: inset 0 -5px 0 0 #33CBF7;
}