/* Primeiro video */
/* Estilos para o botão */
#videoButton {
    padding: 1%;
    background-color: #4682B4;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
}

#videoButton:hover {
    background-color: #e97770;
}

/* Estilos para o modal (janela flutuante) */
#videoModal {
    display: none; /* Inicialmente escondido */
    position: fixed; /* Fixo na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Fundo escuro semitransparente */
    justify-content: center;
    align-items: center;
}

/* Estilo do vídeo dentro do modal */
#videoModal video {
    max-width: 80%;
    max-height: 80%;
}

/* Estilo do botão de fechar */
#closeButton {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: black;
    color: white;
    border: none;			
    cursor: pointer;
    border-radius: 20%;
}

#closeButton:hover {
    background-color: red;
}

/* SEGUNDO video */
/* Estilos para o botão */
#videoButton1 {
    padding: 1%;
    background-color: #4682B4;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
}

#videoButton1:hover {
    background-color: #e97770;
}

/* Estilos para o modal (janela flutuante) */
#videoModal1 {
    display: none; /* Inicialmente escondido */
    position: fixed; /* Fixo na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Fundo escuro semitransparente */
    justify-content: center;
    align-items: center;
}

/* Estilo do vídeo dentro do modal */
#videoModal1 video {
    max-width: 80%;
    max-height: 80%;
}

/* Estilo do botão de fechar */
#closeButton1 {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: black;
    color: white;
    border: none;			
    cursor: pointer;
    border-radius: 20%;
}

#closeButton1:hover {
    background-color: red;
}

/* TERCEIRO video */
/* Estilos para o botão */
#videoButton2 {
    padding: 1%;
    background-color: #4682B4;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
}

#videoButton2:hover {
    background-color: #e97770;
}

/* Estilos para o modal (janela flutuante) */
#videoModal2 {
    display: none; /* Inicialmente escondido */
    position: fixed; /* Fixo na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Fundo escuro semitransparente */
    justify-content: center;
    align-items: center;
}

/* Estilo do vídeo dentro do modal */
#videoModal2 video {
    max-width: 80%;
    max-height: 80%;
}

/* Estilo do botão de fechar */
#closeButton2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: black;
    color: white;
    border: none;			
    cursor: pointer;
    border-radius: 20%;
}

#closeButton2:hover {
    background-color: red;
}