*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

:root {
    --color-ci: #A46548;
}

body {
    font-family: 'Verdana', sans-serif; 
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background: #fff;
    color: var(--color-ci);
}

a {
    color: var(--color-ci);
    transition: all .2s ease-out;
}

a:hover {
    color: #000;
}

.content {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.content img {
    display: block;
    width: 400px;
    max-width: 100%;
}

.content .adresse {
    text-align: center;
    
}