/*
Theme Name: Lima Rock Theme
Theme URI: https://limarock.com
Author: Lima Rock
Author URI: https://limarock.com
Description: Theme personalizado para Lima Rock Shop y RockMetal.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: limarock
*/

:root {
    --black: #090909;
    --dark: #111111;
    --red: #b40000;
    --white: #ffffff;
    --gray: #aaaaaa;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    background:var(--black);
    color:var(--white);
    font-family:Arial, Helvetica, sans-serif;
}

a {
    color:inherit;
    text-decoration:none;
}

img {
    max-width:100%;
    height:auto;
}

.container {
    width:90%;
    max-width:1200px;
    margin:auto;
}