body {
    margin-top: 2vw;
    margin-left: 3vw;
    margin-right: 3vw;
}
@font-face {
    font-family: "hollywood";
    src: url("Hollywood.ttf");
}
@font-face {
    font-family: "dot";
    src: url("LED\ Dot-Matrix.ttf");
}
@font-face {
    font-family: "notorious";
    src: url("super_notorious_v2.otf");
}

h1 {
    font-family: "dot";
    font-size: 5vw;
}

h3 {
    font-family: "notorious";
    font-size: 1.5vw;
}

a:any-link {
    text-decoration: underline;
    color: black;
}
a:visited {
    color:black;
}
a:hover {
    color:rgb(25, 0, 255);
}

.sticker {
    position: fixed;
    right: 10vw;
    rotate: -20deg;
    height: 10vw;
}

.sticker-random {
    position: absolute;
    height: 10vw; /* taille de l’image */
    pointer-events: none; /* pour ne pas bloquer les clics */
  }


@media (max-width: 800px) {
    body {
        margin-top: 3vw;
        margin-left: 6vw;
        margin-right: 6vw;
    }
    h1 {
        font-family: "dot";
        font-size: 10vw;
    }
    
    h3 {
        font-family: "notorious";
        font-size: 5vw;
    }
    .sticker {
        position: fixed;
        right: 10vw;
        rotate: -20deg;
        height: 20vw;
    }
    
    .sticker-random {
        position: absolute;
        height: 20vw; /* taille de l’image */
        pointer-events: none; /* pour ne pas bloquer les clics */
      }
}