﻿

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:Sans-Serif;
    
}

.contenedor 
{
    position: relative;
    width:100vw;
    height:100vh;
    background: rgb(2,0,36);
    background: url('../../images/fondo-background.jpg');
    background-size: cover;
}

.center {
    width: 80vw;
    height: fit-content;
    border: 5px solid #6ec708;
    padding: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: #ffffffd1;
    box-shadow: 0 0 20px;
    max-width: 550px;
}

.center h1 
{
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 10px;
}

.center p {
    line-height: 1.4rem;
    margin-bottom: 17px;
    font-weight: 600;
    text-align: justify;
}

.center .cerrar {
    margin: auto;
    
}

.center .cerrar input[type='button'] {
    padding: 10px;
    background-color: #6fd3db;
    display: block;
    margin: auto;
    border: 1px solid #858282;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
}

.titulo {
    font-size: 1.6rem !important;
    color: #ff0000;
    text-shadow: 0 0 3px #000000;
    letter-spacing: 3px;
}