:root {
  --shadow-color: #fff;
}

*{
  user-select: none;
}

@font-face {
  font-family: mainfontbold;
  src: url('../fonts/Uncut-Sans-Semibold.otf');
}
@font-face {
  font-family: mainfontthin;
  src: url('../fonts/SourceCodePro-ExtraLight.ttf');
}
@font-face {
  font-family: funky;
  src: url('../fonts/ZtSigataKozi.ttf');
}

body{
  background-image: url("../assets/background.png");
}
a{
  text-decoration: none;
  cursor: url("../assets/pixopen.png"), auto;
}
html{
  height: 0;
}
#mainpage{
  overflow: hidden;
}
h1{
  font-family: mainfontbold;
  /* font-family: funky; */
  text-transform: uppercase;
  font-size: 3em;
  color: white;
  text-align: right;
  margin: 0;
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
h3{
  font-family: mainfontthin;
  text-transform: none;
  font-size: 2.04em;
  color: white;
  text-align: right;
  margin: 0;
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
h2{
  font-family: mainfontthin;
  text-transform: none;
  font-size: 1.1em;
  color: white;
  text-align: right;
  margin: 0;
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nocursor {
  /* cursor:none; */
  cursor: url("../assets/pix.png"), auto;
}

#pix {
  position: fixed;
  object-fit: cover;
}

#entete{
  position: fixed;
  top: 20%;
  left: 16%;
}

#logo {
  position: fixed;
  width: 35%;
  height: auto;
  z-index: 2;
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

#logo:hover {
  transform: translate(-15px, -10px);
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

#logoshadow {
  position: fixed;
  width: 35%;
  height: auto;
  z-index: 1;
}

#nav {
  position: fixed;
  top: 20%;
  left: 60%;
  width: auto;
}
#line {
  position: fixed;
  top: 20%;
  left: 55%;
  width: .8px;
}

.btn {
  cursor: url("../assets/pixopen.png"), auto;
  position: relative;

  text-transform: uppercase;
  font-size: .5em;
  color: white;
  text-align: left;

  padding: 3% 6%;

  border-width: 1px;
  border-color: white;
  background: black;

  box-shadow: 0px 0px var(--shadow-color);
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.btn:hover {
  transform: translate(-15px, -10px);
  transition: 150ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 15px 10px var(--shadow-color);
}

@media screen and (min-width: 2000px) {
  .btn {
    font-size: 1.5em;
  }
  h1{
    font-size: 3.73em;
    transition: 150ms;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  h3{
    font-size: 2.54em;
    transition: 150ms;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}

@media screen and (max-width: 1500px) {
  .btn {
    font-size: 1.2em;
  }
  h1{
    font-size: 2.5em;
    transition: 150ms;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  h3{
    font-size: 1.68em;
    transition: 150ms;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}

@media screen and (max-width: 610px) {
  .btn {
    font-size: 1.2em;
  }
  h1{
    font-size: 1.49em;
    transition: 150ms;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  h3{
    font-size: 1em;
    transition: 150ms;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}
