* {
    margin: 0;
    padding: 0;
}

:root {
    --col1:#CDAF9C ;
    --col2: #34464D;
    --col3: #98ABA1;
    --col4: #CFC5B0;
}

.box {
    display: flex;
    justify-self: space-around;
    
}

.container {
    width: 450px;
    height: 450px;
    display: flex;
    justify-self: center;
    border: 3px solid black;
    flex-wrap: wrap;
    padding: 20px;
    margin: 50px;
    background-color: var(--col4);
}

.text{ 
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    font-size: 1.3rem;

}

.btn {
    display: flex;
    justify-self: center;
    padding: 10px 20px;
    margin: 10px;
    color: var(--col1);
    font-size: 2rem;
    font-weight: 900;
    background-color: var(--col2);
    border-radius: 12px;
}

body {
    background-color: var(--col3);
}

