*{
    font-family: sans-serif;
}
body{
    margin: 0;
    background-color: #1b0043;
}
.logo {
    position: absolute;
    top: 35%;
    left: 38%;
    opacity: 0.7;
}
.barre_haut {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    color: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.barre_haut .background{
    background-color: black;
    width: 100%;
    height: 30px;
    opacity: 0.3;
    position: absolute;
    top: 0;
    z-index: -1;
}
.right_corner{
    margin-right: 20px;
    font-size: xx-large;
}
/*CSS Dock*/
.dock__wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
}
.dock__wrapper--left, .dock__wrapper--right {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dock__wrapper--right {
    left: auto;
    right: 0;
}
.dock__wrapper--left .dock, .dock__wrapper--right .dock {
    flex-direction: column;
}
.dock__wrapper--top {
    top: 0;
    bottom: auto;
}
.dock {
    position: relative;
    display: flex;
}
.dock img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.icon {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
/*End CSS Dock*/