@font-face {
    font-family: 'ORANGEKID';
    src: url('../font/orangekid-webfont.woff2') format('woff2'),
         url('../font/orangekid-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    font-family: 'ORANGEKID', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    cursor: url('../images/cursor_normal.png'), auto;
}

p {
    color: green;
    font-family: 'ORANGEKID', sans-serif;
    margin: 5px;
}

#welcomeText {
    font-size: 35px;
}

a {
    text-decoration: none;
}

a#memoireLink {
    pointer-events: none;
    color: gray;
    font-size: 25px;
}

a#memoireLink:active,
a#memoireLink:hover {
    color: lime;
    font-size: 25px;
}

a#valid {
    color: rgb(233, 255, 233);
    font-size: 25px;
}
a#valid:hover {
    color: rgb(43, 235, 84);
    cursor: url('../images/cursor_clickable_alt.png'), pointer;
}

#mdp {
    background-color: black;
    color: white;
    border: 2px solid white;
    font-family: 'ORANGEKID', sans-serif;
    padding: 10px;
    font-size: 25px;
    width: 300px;
}

a#ew {
    color: rgb(255, 233, 233);
    font-size: 25px;
}
a#ew:hover {
    color: rgb(235, 43, 43);
    cursor: url('../images/cursor_clickable_alt.png'), pointer;
}