@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;display=swap');

* {
    font-family: "Inter", sans-serif;
    margin: 0;
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    background-image:linear-gradient(#000000de, #292929b6, #000000de), url('assets/background.jpg');
    background-size: cover;
    background-position: center;
}

img {
    height: auto;
    width: 586px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

body > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

h3 {
    font-size: 2.5rem;
    color: #ff6600;
    text-align: center;
}

p {
    font-size: 1.3rem;
    color: #f8f8f8;
    font-weight: 500;
}

@media(max-width: 460px){
    h3{
        font-size: 1.8rem;
    }
    p{
        font-size: 1rem;
    }
}

.email {
  color: inherit;         /* prend la couleur du texte environnant */
  text-decoration: none;  /* supprime le soulignement */
  font-style: normal;     /* garde un style texte normal */
  font-weight: normal;
  cursor: pointer;
}