/*
    venosyd ©2022
    sergio e. lisan (sels@venosyd.com)
*/

body {
    margin: 0;
    padding: 0;
    background: #FF7F2A
}

.beepstart-loading {
    display: block;
    width: 80%;
    height: 100%;
}

.beepstart-loading svg {
    margin: auto;
    background: rgba(0, 0, 0, 0) none repeat scroll 0% 0%;
    display: block;
    shape-rendering: auto;
    position: absolute;
    top: 80%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px
}

.beepstart-loading h1,
.beepstart-loading h3 {
    color: white;
    text-align: center;
    font-family: sans-serif;
    margin: 0;
    position: absolute;
    font-size: 2.25em;
    font-weight: bold;
    top: 80%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.beepstart-loading h3 {
    font-size: 1em;
    top: 90%;
    font-weight: bold;
}

#hiddenHeader {
    display: none;
}

img {
    display: none;
}

.image-container {
    margin: 0 auto;
    width: 80%;
    left: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transform: translate(-50%, -50%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 50vw;
    height: 50vh;
}

/* Media queries to change the background image */
@media (max-width: 768px) {
    .image-container {
        top: 40%;
        height: 350px;
        background-image: url('assets/assets/png/index_mobile.webp')
    }
}

@media (min-width: 769px) {
    .image-container {
        top: 40%;
        height: 450px;
        background-image: url('assets/assets/png/index.webp')
    }
}