*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100svh;
}

body {
    background-color: #1e1e1e;
    color: #FFFFFF;
    display: flex;
    justify-content: start;
}

.full-container{
    display: flex;
    height: 100svh;
    width: 100svw;
    justify-content: center;
}

.main-container{
    display: flex;
    flex-direction: column;
    height: calc(100svh - 94px);
    background-color: #1e1e1e;
    color: #FFFFFF;
}

.timer-container, .buttons-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    gap: 2px;
    height: auto;
    position: relative;
    z-index: 10;
    width: 100svw;
}

.descVid-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex: 1;
    height: 100%;
}

.buttons-container{
    bottom: 0;
    background-color: #232323;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    padding: 0;
    gap: 0;
}

.timer-container{
    top: 0;
    background-color: #FFFFFF;
    color: #1e1e1e;
}

.headText{
    font-weight: bold;
}

video, img{
    max-height: 100%;
    max-width: 100%;
}

#template-picture, #template-video{
    max-width: 100%;
    max-height: 100%;
}

.precampaign-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #232323;
}
.precampaign-container img{
    max-width: 90%;
    max-height: 75%;
}
    /*
.video-container{
    background-image: url("Fondo.jpg");
    height: auto;
    max-height: calc(100vh - 120px);
    background-size: cover;
    background-position: center center;
}
    */
#visit-website-btn, #unlock-btn{
    width: 100%;
    color: #FFF;
    padding: 12px 0;
    border: none;
    font-size: 14px;
    text-decoration: none;
    i{
        margin: 0 8px;
        font-size: 21px;
    }
}
#visit-website-btn{
    background-color: #00aafb;
}
#unlock-btn{
    background-color: #555555;
}
.blue-bg{
    background-color: rgba(0,151,255,1) !important;
}
#visitWebsiteForm{
    display: none;
}
video::-webkit-media-controls-timeline{
    display: none;
}
video::-webkit-media-controls-seek-back-button,
video::-webkit-media-controls-seek-forward-button{
    visibility: hidden;
}
#playButton{
    position: absolute;
    background-image: url(../Btn.png);
    background-size: cover;
    background-position: center;
    top: 50%;
    left: calc(50% - 32px);
    height: 64px;
    width: 64px;
    padding: 6px;
    border-radius: 48px;
}
#surveyForm{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.survey-response-btn{
    color: black;
    font-size: 1rem;
    border-radius: 48px;
    border: 3px solid #000;
    display: block;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0, 151, 255, 1) 25%, rgba(0, 224, 242, 1) 85%);
}
.survey-response-btn:hover{
    border-color: #FFF;
}

.default-response{
    order: 1;
    background: linear-gradient(135deg, rgb(110, 110, 110) 25%, rgb(156, 156, 156) 85%);
} 

;