.indexContent{
    background: black;
    height: 100%;
}

video {
    position: fixed;
    top: 75px;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(calc((100% - 100vw) / 2));
}

.popupIndex {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 5px dotted white;
    border-radius: 20px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closeIndex{
    display: flex;
    flex-direction: row-reverse;
    width: 97%;
}


.logoIndex{
    width:100px;
    padding: 0 2em;
}

.popupIndex p{
    color: rgb(0, 136, 169);
    font-size: 30px;
}

.btnIndex{
    color: white;
    background-color: rgba(0, 136, 169, 0.7);
    border: 2px solid white;
    padding: 2em;
    margin: 0 2em;
    margin-bottom: 2em;
    width: 70%;
    font-size: 30px;
    border-radius: 10px;
}

.btnIndex:hover{
    background-color: rgb(0, 136, 169);
    transition: all 0.3s ease 0s;
    width: 71%;
}

@media screen and (max-width: 1000px) {

    .popupIndex {
        width: 90%;
    }

    .btnIndex{
        width: 90%;
        font-size: 25px;
    }

}