@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

.accueil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color:hsl(240, 8%, 3%);
}
.title{
    text-transform: uppercase;
    color: hsl(0, 0%, 100%);
}
.list_accueil{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_accueil{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    width:12rem;
    height:4rem;
    font-size:1rem;
    font-family: 'Hind', sans-serif;
    font-weight:bold;
    color:hsl(0, 0%, 100%);
    border-color:hsl(295, 79%, 45%);
    border-radius: 1.5rem;
    box-shadow: 3px 4px 0px 0px hsl(303, 60%, 33%);
    text-shadow: 0px 1px 0px hsl(313, 86%, 31%);
    background:linear-gradient(hsl(310, 73%, 45%), hsl(323, 88%, 58%));
    
}
.btn_accueil:hover{
    background: linear-gradient(hsl(313, 64%, 56%), hsl(310, 82%, 43%));
}
a{
    text-decoration: none;
}