/*
Theme Name: alice
Theme URI: https://thecandymenagerie.com/theme
Author: xaoirxe
Author URI: https://thecandymenagerie.com
Description: Theme for The Candy Menagerie!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: <https://www.gnu.org/licenses/gpl-2.0.html>
Text Domain: alice
*/


body {
    background-color: #4e7fce;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    text-align: center;
    padding-top: 100px;
}

h1, h2, h3 {
    font-family: 'Brush Script MT', cursive;
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em;
    margin: 20px auto;
    max-width: 600px;
}

a {
    font-family: 'Courier New', Courier, monospace;
    color: #FFEB3B;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.falling-objects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none; /* allows clicks through the animation */
    z-index: 999;
}

.object {
    position: absolute;
    top: -5%;
    font-size: 2em;
    animation: fall linear infinite;
    opacity: 0.8;
}

/* FOR FALLING OBJECTS */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}

/* Randomize fall positions and speeds */
.object:nth-child(1) {
    left: 5%;
    animation-duration: 8s;
    animation-delay: 0s;
}
.object:nth-child(2) {
    left: 13%;
    animation-duration: 10s;
    animation-delay: 1s;
}
.object:nth-child(3) {
    left: 20%;
    animation-duration: 7s;
    animation-delay: 2s;
}
.object:nth-child(4) {
    left: 80%;
    animation-duration: 7s;
    animation-delay: 2s;
}
.object:nth-child(5) {
    left: 87%;
    animation-duration: 9s;
    animation-delay: 1.5s;
}
.object:nth-child(6) {
    left: 95%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.object img {
    width: 40px;
    height: auto;
}

/* FOR HIDING THE HEADER WO REMOVING get_header */
.page-landing-page .site-header {
    display: none;
}