/* Crée par Alex Da Silva Vieira
    le 10.01.2025
    le CSS de ma page principale 
 */

video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
body {
  background-color: black;
  color: white;
  overflow: hidden;
}
.footer-bottom {
  background-color: black;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  color: #fff;
}
.footer-bottom div {
  padding: 10px;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: gray;
}
html {
  overflow: -webkit-paged-x; /* Pour Safari */
  overflow: -moz-scrollbars-none; /* Pour Firefox */
  overflow: scroll; /* Pour les autres navigateurs */
  -ms-overflow-style: none; /* Pour Internet Explorer et Edge */
}
.bg {
  position: relative; 
  width: 100%; 
  height: 100vh;
  overflow: hidden; 
  display: flex;
}
.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  color: white; 
  font-size: 2rem; 
  text-align: center; 
  flex-direction: column;
  text-shadow: 10px 10px 10px rgba(236, 236, 236, 0.7);
}
h1{
  color: #fff;
}
