/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */


@font-face {
    font-family: 'moon';
    src: url('../fonts/moon.eot');
    src: url('../fonts/moon.eot?#iefix') format('embedded-opentype'),
        url('../fonts/moon.woff2') format('woff2'),
        url('../fonts/moon.woff') format('woff'),
        url('../fonts/moon.svg#moon') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'm';
    src: url('../fonts/m.eot');
    src: url('../fonts/m.eot?#iefix') format('embedded-opentype'),
        url('../fonts/m.woff2') format('woff2'),
        url('../fonts/m.woff') format('woff'),
        url('../fonts/m.svg#m') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'mr';
    src: url('../fonts/mr.eot');
    src: url('../fonts/mr.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mr.woff2') format('woff2'),
        url('../fonts/mr.woff') format('woff'),
        url('../fonts/mr.svg#mr') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ml';
    src: url('../fonts/ml.eot');
    src: url('../fonts/ml.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ml.woff2') format('woff2'),
        url('../fonts/ml.woff') format('woff'),
        url('../fonts/ml.svg#ml') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: m;
    background: #f4f4f4;
    text-align: center;
}

.container {
    width: 300px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
}


button {
    width: 100%;
    padding: 10px;
    background: blue;
    color: white;
    border: none;
}

.centrar_v {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
}

.centrar_h {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
}

.centrar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.sombra {
    -webkit-box-shadow: 10px 10px 8px -6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 10px 10px 8px -6px rgba(0, 0, 0, 0.2);
    box-shadow: 10px 10px 8px -6px rgba(0, 0, 0, 0.2);
}

.contenedor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
    max-width: 800px;
}

.caja {
    position: relative;
    padding: 3px;
    text-align: center;
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px;
}