
:root {
    width: 100%;
    height: 200%;
    font-family: 'Courier New', Courier, monospace;
    overflow-y:visible;
}

canvas {
    background-color: #212;
    border-radius: 20px;
    width: 100%;
}


body {
    background: linear-gradient(0deg,rgba(48, 32, 59, 1) 0%, rgba(11, 38, 41, 1) 33%, rgba(36, 16, 71, 1) 69%, rgba(48, 32, 59, 1) 100%);
    height: 200%;
    position: flex;
    color : white;
}
h1 {
    margin: 4rem;
    padding: 2rem;
    font-size: 48px;
    border-width: 0 8px 0 8px;
    border-style: solid;
    border-radius: 20px;
    border-color: white;
}

i {
    color : coral;
}

h2 {
    padding: 2rem 0 0 0;
    color: lightblue;
    font-size: 36px;
    
}

ol, ul, p {
    font-weight: 500;
    color: white;
    font-size: 24px;
}

ol, ul {
    text-align: left;
}







#container {
    padding : 2rem;
    /*centre le div*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /*Il faut vraiment un doctorat en css pour pouvoir aligner un div...*/
}

#toast {
    max-width: 50%;
}

.menu {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.menu li {
    margin: 2rem 0;
    width: 100%;
    position: relative;
}

a {

    color: wheat;
}

.menu a {
    display: inline-flex;
    text-align: center;
    flex-direction: column;

    font-weight: bold;
    padding: 0.5rem 0.5rem;
    border: solid 4px wheat;
    border-radius: 20px;
    width: 40vw;
    text-decoration: none;
    font-size: 24px;
    position: flex;
}
a:hover {
    color : rebeccapurple
}
.menu a:hover {
    border-color: rebeccapurple;
}


