.container-fluid {
    background-image: url(../immagini/weird_news/press.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}


@font-face {
    font-family: 'neue-montreal-bold';
    src: url('../font/neuemontreal-bold.otf') format('opentype');
}

@font-face {
    font-family: 'neue-montreal-medium';
    src: url('../font/neuemontreal-medium.otf') format('opentype');
}

@font-face {
    font-family: 'nome-font-light';
    src: url('../font/neuemontreal-light.otf') format('opentype');
}
@font-face {
    font-family: 'neue-montreal-regular';
    src: url('../font/neuemontreal-regular.otf') format('opentype');
}


.form-group {
    margin-bottom: 2rem;
}

.btn{
    --bs-btn-color: #f1f1f1;
    --bs-btn-bg: #58534b;
    --bs-btn-border-color: #ffffff00;
    --bs-btn-hover-bg: #9d7b96;
    --bs-btn-hover-border-color: #9d7b96;
}

.font-h1{
  font-family: "neue-montreal-bold", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  color: black;
}

.font-h1-s{
  font-family: "neue-montreal-bold", sans-serif;
  font-size: 1.2rem;
  color: black;
}

h5{
    font-family: "neue-montreal-medium", sans-serif;

}


h2{
  font-family: "neue-montreal-medium", sans-serif;
  font-size: 1rem;
  color: black;
}

.p1{
  font-family: "neue-montreal-regular", sans-serif;
  font-size:1rem;
  color: black;
}

.p2{
  font-family: "neue-montreal-light", sans-serif;
  font-size:0.8rem;
  margin-bottom: 0.3rem;
  text-align: justify;
  color: black;
}

.col-md-4 {
    flex: 0 0 auto;
    width: 100%;
}

.sezione_video {
    position: relative;   /* crea il contenitore di riferimento per il video */
    height: 100vh;
    overflow: hidden;      /* taglia via eventuale eccesso del video */
}

#video_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   /* 100% dell'altezza del viewport, sempre */
    object-fit: cover;
    z-index: -1;
}


/* Modifica mod-c per centrare il testo e formattarlo al meglio */
.mod-c {
    width: 100%;
    max-width: 1500px;
    padding: 5rem;
    background-color: rgb(145 142 136 / 80%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    color: #000000;
    font-family: 'neue-montreal-regular';
    text-align: justify;
    margin: 0 auto;
}

a {
    color: rgb(0 0 0);
    text-decoration: underline;
}

a:hover{
    color: rgb(88, 88, 88);
    text-decoration: underline;
}