@font-face {
  font-family: "GT Alpina";
  src: url(src/GT-Alpina-Standard-Thin-Trial.woff2);
}

@font-face {
  font-family: "Oldschool Grotesk";
  src: url(src/OldschoolGroteskTrial-Regular.ttf);
}

body {
  font-family: "Geist Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: calc(8px + 0.3vw);
  text-align: center;
  margin: 0;
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header img{
    max-width: calc(30px + 1vw);
}

.btn{
    border: 1px solid #000;
    border-radius: 100px;
    padding: 4px 16px;
}

h1 {
  font-family: "Oldschool Grotesk";
  font-weight: 400;
  font-style: normal;
  font-size: calc(14px + 3.5vw);
  line-height: 0.85;
  margin: 0;
  padding: 0 20px;
}

.ohb{
    font-family: "Oooh Baby", cursive;
}

.gta{
    font-family: "GT Alpina";
}

a{
    text-decoration: none;
    color: #000;
}

.btn_link:hover, .btn_dark{
    background-color: #000;
}

.btn_link:hover a, .btn_dark{
    color: #fff;
}

.btn_link{
    margin-left: 8px;
    background-color: #fff;
}

header{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: 0;
    margin-top: 5vh;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

footer{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5vh;
    z-index: 99;
}

.mouse-image {
    position: fixed;

    width: 180px;
    height: auto;

    pointer-events: none;

    z-index: 2;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.7)
        rotate(var(--rotation));

    animation:
        mouse-image-in 400ms cubic-bezier(.16, 1, .3, 1) forwards;

    will-change: transform, opacity;
}

.mouse-image--out {
    animation: mouse-image-out 500ms ease-in forwards;
}

@keyframes mouse-image-in {
    from {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0.7)
            rotate(var(--rotation));
    }

    to {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(var(--scale))
            rotate(var(--rotation));
    }
}

@keyframes mouse-image-out {
    from {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(var(--scale))
            rotate(var(--rotation));
    }

    to {
        opacity: 0;
        transform:
            translate(-50%, -55%)
            scale(calc(var(--scale) * 0.9))
            rotate(var(--rotation));
    }
}