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

html{
    font-size: 62.5%;
    font-family: sans-serif;
    color: white;
}

body{
    background: #4e3b30;
}

.title{
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5rem;
}

.uitleg{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.container{
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    width: 40%;
}

ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #6b5345;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    margin: 10px 0;
    transition: background-color 0.3s ease-in-out;
}