/*
 * CSS definition for phone format forced to width:800
 *
 * @author Eric ROBILLARD <eric.robillard@mywebapplab.fr>
 * @copyright (c) 2022, Eric ROBILLARD
 * @link https://www.mywebapplab.fr
 * @license MIT the MIT license
 */

html{
  font-size: clamp(12px,2vh,18px);
}

body {
    padding: 0;
    margin: 0;
    height: 100dvh;
}

@media screen and (min-width: 800px) {
    body {
        background-image: url("../img/background_01.jpg");
        background-repeat: repeat;
    }
}

#global {
    max-width: 800px;
    background: white;
}

#header {
    height: 6dvh;
}
#header_title {
    color: #404444;
}

#content {
    height: 90dvh;
}

#footer {
    height: 3dvh;
}
#footer_title {
    color: #404444;
}