:root{
    --primary-color: #bfa688;
    --secondary-color: #623f46;
    --tersary-color: #7e764f;
    --forth-color: #c98a97;
    --fith-color: #775728;

    --spacer: 70px
}

/* detects if device colour schime is light or dark */
/* @media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #3498db;
        --secondary-color: #2ecc71;
        --background-color: #f5f5f5;
        --text-color: #333333;
    }
    
} */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--secondary-color);
    color: var(--fith-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.test{
    position: fixed;
    bottom: 0;
    right: 0;
}
.test button{
    padding: 10px;
    margin: 5px;
    background-color: var(--primary-color);
    border: solid 3px var(--fith-color);
    border-radius: 14px;
    transition: 0.5s;
}
.test button:hover{
    background-color: var(--fith-color);
    border: solid 3px var(--primary-color);
    color: var(--forth-color);
    transition: 1s;
}