@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playwrite+PE:wght@100..400&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* 
-- Fuentes --
Playwrite PE
Quicksand
Noto Serif
Roboto 
*/


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Playwrite PE', sans-serif;
    
}

body {
    padding-top: 40px;    
}

#tarjeta {
    margin: auto;
    border: 1px solid lightgray;
    width: 500px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px gray;
    margin-bottom: 50px;
    position: relative;
    
}

#titulo {
    text-align: center;
    padding: 20px;
    padding-bottom: 40px;
}

#imagen {
    display: block;
    margin: auto;
    cursor: pointer;
}

#mensaje {
    text-align: center;
    margin-top: 30px;
    display: block;
    width: 100%;
    font-size: 1rem;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
}

#enviar {
    display: block;
    margin: auto;
    font-size: 1.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;
    cursor: pointer;
    background-color: rgb(255, 0, 128);
    color: white;
    transition: all 0.3s;
}

#enviar:hover {
    background-color: rgb(255, 126, 190);
}

#color-fondo, #fuente {
    position: absolute;
    top: 0px;
    left: -50px;
    font-size: 1.5rem;    
    border-radius: 50%;
    height: 40px;
    width: 40px;
    cursor: pointer;
    color: blue;
    background-color: white;
    border: 0;
    box-shadow: 0 0 10px gray;
    transition: all 0.2s;
    font-family: Verdana, Geneva, Tahoma, sans-serif, sans-serif;
}

#fuente {
    top: 60px;
    transition: all 0.2s;
}

#fuente:hover {
    box-shadow: 0 0 10px blue;
    background: rgb(211, 252, 235);    
}

#fuente:active {
    background-color: rgb(68, 0, 255);
}

#color-fondo:hover {
    box-shadow: 0 0 10px blue;
    background: rgb(211, 252, 235);
}

#color-fondo:active {
    background-color: rgb(68, 0, 255);
}


#aviso {
    color: red;
    display: block;
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    visibility: hidden;
}