/*
Theme Name: Brand-Music-main
Theme URI: 
Author: Jonathan Martelo
Author URI: 
Description: intento de creacion de un tema personalizado
Requires PHP: 5.6
Requires at least: 5.0
Tested up to: 6.7
Version: 1.0.8
Text Domain: music-zone
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: creacion de un tema personalizado para el uso de una pagina main minimalista sencilla

*/

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* evita scroll y movimiento */
}

body.custom-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.full-height {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.content-center {
    text-align: center;
}

.animated-image-container img.fade-in-image {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    max-width: 90%;
    height: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

.button-group {
    margin-top: 20px;
}

.custom-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-button:hover {
    background-color: #444;
}
