@charset "UTF-8";
/* CSS Document */
#video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
/* Aggiungi uno stile generale alla modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Stile per il contenuto della modale */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

/* Stile per il pulsante di chiusura della modale */
.close {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 320px){
	.modal-content {
		width: 90%;
	}
}
@media (max-width: 375px){
	.modal-content {
		width: 90%;
	}
}
@media (max-width: 390px){
	.modal-content {
		width: 90%;
	}
}
@media (max-width: 414px){
	.modal-content {
		width: 90%;
	}
}
@media (max-width: 430px){
	.modal-content {
		width: 90%;
	}
}