* {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box; 
  -moz-osx-font-smoothing: grayscale; 
  text-rendering: optimizeLegibility; 
  -webkit-font-smoothing: antialiased; 
  -moz-font-smoothing: antialiased; 
  font-smoothing: antialiased; 
  font-smooth: never;
  -moz-font-smooth: never;
}

html {
  min-height: 0vw;
  text-size-adjust: 100%;
}

@media screen and (min-width: 700px)  {
  html {
    font-size: calc(4px + .9vw);
  }
}
@media screen and (max-width: 699px)  {
  html {
    font-size: calc(4px + .75vw);
  }
}

:root {
  --purple: #9384a5;
  --pink: #f6b1a6;
}

html, body {
  margin: 0;
  padding: 0;
  
}

body {
  color: var(--grey);
  font-family: "Edition", serif;
  line-height: 1.2;
  font-size: var(--text-regular-size);
  font-variant-numeric: tabular-nums;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
}

::selection {
  color: #000;
  background: var(--lightgrey);
}

img, video {
  display: block;
}

figure {
  margin: 0;
  width: 100%;
  display: block;
}

button {
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
  text-align: left;
}

h1, h2, h3 {
  font-weight: normal;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.mask {
    display: none;
    visibility: hidden;
}
.player {
    height: 100dvh;
    background-color: var(--purple);
}
.player::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
    background-image: url("../masks/mask-top.svg") ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-image: url("../masks/mask-video.svg")
}