/*
Theme Name:   Rosalie Style
Theme URI:    https://artworkbyrosaliebottley.co.uk/rosaliestyle/
Description:  Artwork by Rosalie Bottley 2025 Child Theme
Author:       Gaffyn
Author URI:   https://artworkbyrosaliebottley.co.uk
Template:     twentytwentyfive
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain:  artworkbyrosaliebottley
*/

.page-container {
	width: 100%;
	margin: 0 auto;
	position: relative;
	border-radius: 30px;
	margin-bottom: 20px;
}

.maintext {
    color: #aaa;
    background: black;
    text-align: center;
}

/* Container covering full screen */
.emoji-stream {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  pointer-events: none; /* Prevent blocking clicks */
  overflow: hidden;
  z-index: 0;
}

/* Individual emoji */
.floating-emoji {
  position: absolute;
  font-size: 2rem;
  white-space: nowrap;
  will-change: transform;
  animation-name: floatAcross;
  animation-timing-function: linear;
}

/* Animation */
@keyframes floatAcross {
  from {
    transform: translateX(-10vw);
  }
  to {
    transform: translateX(110vw);
  }
}