html,body {
	margin:0;
	padding:0;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    background-color: white;
    font-family: system-ui;
}

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
   }


.content{
    display:flex;
	height:100vh;
	align-items:flex-end;    /*margin:auto dans div*/
	justify-content:center;
    
}

video#bgvid {
  position: fixed; right: 0; bottom: 0;
  min-width: 100vw; 
  width: 100vw ;
  background: url(fond.mp4) no-repeat;
  background-size: cover;
}

@media screen and (max-device-width: 800px) {
    html { background: url(polina.jpg) #000 no-repeat center center fixed; }
    #bgvid { display: none; }
}

a{
    color: white;
    z-index: 10;
    font-family: amourist, sans-serif;
    font-size: 600%;
    margin-bottom: 1%;
}

@font-face {
font-family: 'amourist';
src: url("../ressources/Amourist.otf?") format('otf'),
     url("../ressources/Amourist.otf?") format('truetype');
font-weight: normal;
font-style: normal;
}


a:visited{
    color: rgba(80, 80, 80, 1);
    
}

a:hover{
    text-decoration: inherit;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 100%;
}

