@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

html {
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

body {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    text-align: center;


    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;


}

img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    /*
    mask-size: cover;
    mask-image: url("https://web1.tim-momo.com/ldvelh/assets/img/masque.svg");
    */
    display: block;
}

h1 {
    font-family: "Caudex", serif;
    font-weight: 400;
}

ul {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    list-style: none;
    margin-top: 1rem;
}

ul>li>a {
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    background: white;
    color: black;
    display: inline-block;
    transition: opacity 0.5s;
}

ul>li>a:hover {
    opacity: 0.75;
}

a[href^="../"] {
    background: darkolivegreen;
    color: white;
}

a[href^="./index.html"],
a[href^="index.html"],
a[href^="/index.html"] {
    background: crimson;
    color: white;
}