body{
    font-family: "Roboto", Arial, sans-serif;
}


header{
    z-index: 5;
    position: fixed;
    background-color: #E70012;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 20px 10px #000000;
    justify-content: space-between;
}

header a{
    padding-left: 10px;
    text-decoration: none;
    color: #000000;
}

header a h1{
    background-color: white;
    padding: 5px 20px;
    border-radius: 10px;
    border: 2px solid black;
}


.timeline-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}


.timeline-item {
    top: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 80px 0;
    position: relative;
    z-index: 2;
}


.text-box {
    background-color: darkgray;
    width: 45%;
    padding: 20px;
    border-radius: 20px;
    z-index: 1;
}


.games img {
    right: 25%;
    transform: translateX(-50%);
    width: 250px;
    z-index: 2;
}


.ligne {
    position: absolute;
    right: 23.5%;
    top: 340px;
    bottom: 0;
    width: 4px;
    background-color: black;
    z-index: 0;
}

footer{
    z-index: 5;
    background-color: white;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    box-shadow: 0px 0px 20px 2px #000000;
    text-align: left;
}

footer p{
    border: 2px solid;
    border-radius: 5px;
    position: fixed;
    padding: 4px;
    font-size: auto;
    left: 10px;
    font-weight: bold;
}

footer p a{
    color: #000000;
    text-decoration: none;
}