*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    font-size: 10px;
    font-family: 'Prompt', sans-serif;
    background-color: rgb(10, 10, 10);
}

h3{
    text-align: center;
    color: white;
    font-size: 2.8vh;
    margin-top: 4vh;
}

.main-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.left-box{
    display: none;
}

.right-box{
    width: 100%;
    height: auto;
}

.image-container{
    width: 60%;
    margin-left: 20%;
    height: 40vh;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-top: 5vh;
    box-shadow: 0 0 1px 1px rgb(81, 81, 81);
    background-color: rgb(10, 10, 10);
}

.image-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.paragraph{
    width: 80%;
    margin-left: 10%;
    height: auto;
    color: white;
    font-size: 2.3vh;
    margin-top: 7vh;
}

@media screen and (min-width:800px) {
    .left-box{
        display: block;
        width: 50%;
        height: auto;
    }

    .right-box{
        width: 50%;
        height: auto;
        background-color: #222425;
    }

    .liste{
        width: 20%;
        height: auto;
        position: fixed;
        top: 30vh;
        left: 30vh;
    }

    .liste-elemani{
        width: 100%;
        height: auto;
        padding: 1rem;
        font-size: 2.7vh;
        border-bottom: 1px solid white;
    }

    .liste-elemani a{
        color: white;
        text-decoration: none;
    }
}