/*
Theme Name: KlaimGames One-Pager
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A simple one-page theme for KlaimGames
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: klaimgames
*/

/* General Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000; /* Deep blue or black background */
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#l-image {
    max-width: 80%;
    height: auto;
}

#discord-button {
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #1abc9c, #3498db);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.5s;
    font-family: 'Mystery Quest', cursive;
}

#discord-button:hover {
    background: linear-gradient(45deg, #3498db, #1abc9c);
}

.special-message {
    margin-top: 20px;
    font-size: 1.2em;
    color: #e74c3c;
}

.footer-note {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1em;
}

/* Hover Animation for L's Image */
@keyframes glow {
    from {
        box-shadow: 0 0 5px #1abc9c;
    }
    to {
        box-shadow: 0 0 20px #1abc9c;
    }
}

#l-image:hover {
    animation: glow 1s infinite alternate;
}

/* Existing styles... */

#l-image {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80vh; /* Prevents the image from being too tall */
    object-fit: contain; /* Maintains aspect ratio */
}
