﻿* {
    margin: 0px;
}

body {
    background-image: url('../images/arp.png');
    font-family: 'Rajdhani', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    color: antiquewhite
}

div#page {
    width: 1800px;
    height: 920px;
    text-align: justify;
    margin: 0px auto;
}

div#logo {
    width: 205px;
    height: 205px;
    float: left;
    margin: 5px;
}

div#banner {
    background-color: rgba(102, 66, 0, 0.7);
    width: 1575px;
    height: 205px;
    line-height: 180px;
    float: left;
    margin: 5px;
    font-size: 50px;
    text-align: center;
}

div#menu {
    width: 1790px;
    height: 70px;
    float: left;
    margin: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 495px;
    box-sizing: border-box;
}

div.bouton {
    background-color: rgba(222, 150, 16, 0.5);
    width: 180px;
    height: 50px;
    float: left;
    margin-left: 20px;
    text-align: center;
}

div.bouton:hover {
    background-color: rgba(222, 150, 16, 0.65);
}

div#content {
    background-color: rgba(102, 66, 0, 0.5);
    width: 1790px;
    height: 540px;
    margin: 5px;
    clear: both;
    font-size: 24px;
    padding: 10px;
    box-sizing: border-box;
}

div#footer {
    background-color: rgba(102, 66, 0, 0.7);
    width: 1790px;
    line-height: 65px;
    float: left;
    margin: 5px;
    font-size: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Title stylisé */
.tooltip {
    position: relative;
    color: white;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: rgba(222, 150, 16, 0.5);
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 15px;

    /* Positionnement */
    position: absolute;
    z-index: 1;
    bottom: -125%;
    /* au-dessous du lien */
    left: 80%;

    /* Effet de transition */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}