*{
    box-sizing: border-box;
}
.speech-bubble {
    position: absolute;
    background: #b363c8;
    border-radius: .4em;
    padding: 30px 20px 10px 20px;
    top: 30vh;
    color: #111;
    width: 95vw;
    left: 2.5vw;
}
.speech-bubble p::selection{
    background-color: white;
    color: hotpink;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-bottom-color: #b363c8;
    border-top: 0;
    border-left: 0;
    margin-left: 60px;
    margin-top: -20px;
}
#miroslav{
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    width: 30px;
    position: absolute;
    display:block;
    text-align: center;
    height: 30px;
    line-height: 31px;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-family: "arial";
}
body{
    background-color: black;
    height: 100vh;
    overflow: hidden;
    background-image: url("./riddlerin.webp");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    margin: 0;
}
#palabracruz {
    display: none;
    background-color: white;
    height: 100vh;
    width: 100vw;
    font-size: 9pt;
    position: relative;
}
#palabracruz ol{
    margin: 0;
    padding: 10px 0px 0px 25px;
}
#palabracruz_gfx{
    background-image: url("./palabracruz.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 45vh;
}
#palabracruz.active{
    display:block;
}
form{
    border: 1px solid black;
    border-radius: 3px;
    margin: 0 10px;
    padding: 5px 10px;
}
label{
    margin-top: 5px;
    display:block;
}
input, select{
    width: 100%;
}
.error{
    color: white;
    background-color: red;
    border-color: red;
}
.success{
    color: white;
    background-color: #55aa55;
    border-color: green;
}
#lat, #lng{
    width: 49.5%;
}
#submit{
    width: 40%;
    margin: 5px auto 0 auto;
    display:block;
}

#buble p{
    display: none;
}
#buble p.active{
    display: block;
}
#weddingriddle{
    background-color: white;
    display:none;
}
#weddingriddle.active{
    display: block;
}