/* ******************************
Jean-Philippe Lemay
25 mai 2020
style.css
******************************   */

@media screen and (min-width: 801px){
    span
    {
        font-size: 18px
    }
}

@media screen and (max-width: 800px){
    span
    {
        font-size: 12px
    }
}

p,h1,h2,h3
{
    font-family:Arial;
}

.button
{
    font-size: 16px;
    background-color: orange;
}
div:not(.modal):not(.modal-content)
{
    font-family:Arial;
    border:1px solid black;
    display:inline-block;
    padding:5px;
    margin:5px;

}



.bouton2
{
    background-color:blue;
    width: 100px;
    text-align:center;
}

.title
{
    font-weight: bold;
    font-size:20px;
    background-color:orange;
    width:97%;
    text-align:center;
}

.title2
{
    font-weight: bold;
    text-align: center;
    width:97%;
    font-size: 24px;
}

.bouton
{
    background-color:blue;
    width:150px;
    text-align:center;
}

.lien_bouton
{
    color:white;
    text-decoration:none;
}

span
{
    vertical-align: middle;
    font-family:Arial;
    display:inline-block;
    padding:0px;
    margin:0px;
}

body
{
    background-image :url("background.jpg");
    background-attachment: fixed;
    height: 100%;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}












