/*
Theme Name: TAAG-GENETICS
Author: BRYAN BIZCARRA
Description: Creamos este template para el blog de TAAG-GENETICS
Version: 0.0.1
Tags: responsive, demo theme wordpress
*/

/*******Importar tipografias************/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
    font-family: 'Open Sans', sans-serif;
}
* {
    margin: 0;
}

.contenedor-popup {
    position: fixed;
    z-index: 9;
    width: 100%;
    background-color: rgba(54, 45, 45, 0.432);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    top: 0;
    transition-property: all;
    transition-delay: .2s ;
    transition-duration: .5s;
    visibility: hidden;
    opacity: 0;
}
.popup_activo {
    visibility: visible;
    opacity: 1;
    transition-property: all;
    transition-duration: .5s;
    background-color: rgba(54, 45, 45, 0.432);
}

.popup {
    background-color: #fafafa;
    width: 380px;
    height: auto;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    z-index: 99999;
}

.contenedor-imagen {
    background: url("assets/images/fondo.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 25px;
    border-radius: 25px;
    height: 150px;
}

.contenedor-imagen img {
    width: 100px;
}

.titulo-popup {
    text-align: center;
    margin-top: 45px;
    font-size: 30px;
    font-weight: 600;
}

.contenedor-contenido {
    text-align: center;
    margin-top: 45px;
    font-size: 14px;
}

.contenedor-boton {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.cancelar {
    text-align: center;
    border-radius: 50px;
    background-color: rgb(99, 137, 240);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 150px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cancelar:hover {
    background-color: rgb(31, 31, 194);
    transition: all .5s;
}
/*********Estilos del menu*******************/
header nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}
.buscador{
    width: 250px;
    padding: 7px;
    border-radius: 20px;
}
.contenedor-menu{
    margin: 15px;
}
.contenedor-menu a{
    text-decoration: none;
    margin: 10px;
}