@font-face {
    font-family: Pincelada;
    src: url("../Fuentes/Zeykfont-Regular.ttf");
    font-style: normal;
    font-size: bold;
}
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: rgb(65, 63, 63);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header{
    width: 80vw;
    height: 10vh;
    margin-top: 1vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}
header > h1 {
    font-family: Pincelada;
    letter-spacing: 0.25em;
    font-size: 6vw;
    width: 80vw;
    background: rgb(153, 154, 184);
    mix-blend-mode: multiply;
    position: relative;
    text-align: center;
    text-decoration:underline overline;
    border-radius: 20%;
    height: 10vh;
    padding: 8px;
    margin-top: 2vh;
}
header > h1:before{
    content: '';
    width: 100%;
    height: 15vh;
    background: linear-gradient(to right, blue, green, red, yellow);
    mix-blend-mode: screen;
    position: absolute;
    top: 0;
    left: 0;
}
.botellas{
    background-image: url("../Imagenes/burbujas.jpg");
    background-repeat: no-repeat;
    background-size: 80vw 80vh;
    opacity: 0.4;
    width: 80vw;
    height: 70vh;
    margin-top: 5vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}
.botellas > div{
    width: 6vw;
    height:30vh;
    margin-left: 6vw;
    margin-right: 6vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.botellas > div > div{
    width: 100%;
    height: 20%;
    border-left: solid 3px black;
    border-right: solid 3px black;
}
.botellas > div > div:nth-child(5){
    border-radius: 0% 0% 50% 50%;
    border-bottom: solid 3px black;
}
.botellas > div > div:nth-child(1){
    width: 120%;
    height: 8%;
    border: solid 3px black;
    border-radius: 0% 20% 20% 0%;
}
.botella{
    border-radius: 0 0 50% 50%;
    width: 10vw;
}
.pie{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80vw;
    height: 8vh;
    background: linear-gradient(to right, blue, green, red, yellow);
    opacity: 0.4;
    border-radius: 20%;
    margin-top: 2vh;
}
button{
    background-color: blue;
    color: #fff;
    font-size: 20px;
    border: solid 2px white;
    border-radius: 20%;
    height: 80%;
}
#mensaje{
    text-align: center;
    background: linear-gradient(to right, blue, green, red, yellow);
    width: 400px;
    height: 150px;
    visibility: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 20%;
}
#botonVictoria{
    border-radius: 20%;
    background-color: rgba(red, green, rgb(28, 28, 129), 0.5);
    width: 33%;
    margin-top: 10px;
    height: 30%;
}
.nivel{
    width: 15%;
    height: 100%;
}
#nivel{
    color: red;
    font-weight: bold;
    font-size: 3vw;
    text-shadow: 5px 5px black;
}
@media screen and (max-width: 769px){
    .pie{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 80vw;
        height: 20vh;
        background: linear-gradient(to right, blue, green, red, yellow);
        opacity: 0.4;
        border-radius: 20%;
        margin-top: 2vh;
    }
    button{
        height: 19%;
    }
}