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

:root{
    --primary : #fefefe;
    --secondary: #3a1e1e; 

    --text : #2e2e2e ;
    --text-constrast : #e2e2e2 ;
}

body{
    background-color: var(--primary);
    color: var(--text);

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100vh;

}

div{
    border-radius: 2rem;
    border: 1px var(--text-constrast) solid;
    padding: 2rem;
    margin: auto;


}