body {
    background-image: url(img/fond.jpg);
}

img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
}


h1 {
    text-align: center;
    color: orange;
    font-size: 50px;
}

h3 {
    font-size: 40px;
    color: yellow;
    text-align: center;
}

strong {
    font-size: 20px;
    color: white;
}

p {
    color: white;
    text-align: center;
    font-size: 20px;
}

footer {
    background-color: orange;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 20px;
}

.bitcount-prop-single {
  font-family: "Bitcount Prop Single", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}

/* Menu */
      nav {
        margin-top: 1rem;
        width: 100%;
      }
      
      nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
      }
      
      nav ul li {
        margin: 0 1rem;
        font-size: 30px;
      }
      
      nav ul li a {
        text-decoration: none;
        color: yellow;
        font-weight: bold;
        transition: color 0.3s;
      }
      
      nav ul li a:hover {
        color: gold;
      }

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }

    nav ul li {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
        font-size: 22px;
    }

    p, strong {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    nav ul li {
        font-size: 18px;
    }

    footer {
        font-size: 14px;
        padding: 10px;
    }

    p, strong {
        font-size: 16px;
    }
}