body{
    background-color: #f3eded;
}

header{
    text-align: center;
    background-color: #000000;
    color: #fff;
    font-size: 30px;
}

main{
    width: 100%;
    padding: 20px;
    margin: 100px auto;
    display: flex;
    gap: 20px;
}

#container, #settings{
    width: 600px;
    height: 600px;
    
}

#settings {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

button {
    width: 100px;
    height: 50px;
    background-color: #5deb4a;
    border-radius: 8px;
}

#container{
    border: 1px solid rgb(28, 13, 167);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.row{
   display: flex;
   flex: 1;
}

.column {
    flex: 1;
}

footer{
    margin-top:13%;
    display: flex;
    flex-direction: column;
    color: #5130ca;
    align-items: center;
    justify-content: center;
    padding: 25px;
}