/* Modification des propriétés de "body" */
body {
    margin: 0;
    background-image: url(../Images/xp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Création d'un bloc "fictif" qui occupe l'espace de la page, afin d'aligner le footer avec le bas de l'écran */
.bloc-principal {
    min-height: calc(100vh - 35px);
}

/* Emplacement des icones du bureau */
#deskicon {
    padding-left: 20px;
    padding-top: 20px;
}

/* Emplacement de la barre des tâches (footer) */
.xp_taskbar {
    margin: 0;
    height: 35px;
    background-color: #255fdc;
}

/* Emplacement du contenu de la barre des tâches */
#xp_start {
    float: left;
}

#xp_icons {
    height: 26px;
    width: auto;
    margin-left: 20px;
    margin-top: 5px;
}

#xp_clock {
    float: right;
    height: 35px;

}

/* Modification des propriétés de la Boite de dialogue */
.modal-container {
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* home btn */
#homebutton {
    display: inline-block;
    background-color: #000000;
    opacity: 0.5;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    z-index: 1000;
    text-decoration: none;
}

#homebutton:hover {
    cursor: pointer;
    background-color: #333;
}

#homebutton:active {
    background-color: #555;
}