*{
	margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

body{
    background-color: #25282D;
    font-family: 'Roboto', sans-serif;
}

#titre-erreur{
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

#texte-erreur{
    color: #fff;
    padding: 40px;
    text-align: center;
}

a{
    text-decoration: none;
    color: #fff;
}

#erreur{
    margin: auto;
    width: 28vw;
    display: block;
}

button{
    width: 250px;
    height: 50px;
    margin: auto;
    margin-top: 30px;
    display: block;
}

.styled {
    border: none;
    line-height: 0;
    padding: 32px 60px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    background-color: #FDAB59;
    transition: background-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
    cursor: pointer;
}

.styled:hover {
    background-color: rgb(255, 255, 255);
    color: #FDAB59;
    transition: background-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}