* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: rgb(0, 100, 0);
    color: white;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: #1b1b1b;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.barreDerecherche {
    width: 75vw;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #000000;
    border: solid 2px #5b5b5b;
}

#choixDeLutilisateur {
    height: 100px;
    width: 55vw;
    background-color: #000000;

    border: none;
    text-align: center;
    font-size: 2rem;
    color: aliceblue;
}

input {
    height: 100%;
    width: 100%;

    border: none;
    text-align: center;
    font-size: 2rem;
    color: rgb(0, 145, 0);
    background-color: transparent;
}

.options {
    height: 100px;
    width: 20vw;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: #000000;
    border-left: solid 2px #5b5b5b;
}

button {
    height: 50px;
    width: 20vw;
    border: none;
    border-radius: 0 20px 20px 0;
    text-align: center;
    font-size: 1rem;
    color: rgb(0, 145, 0);
    text-decoration: underline;
    background-color: transparent;
}
button:hover {
    cursor: pointer;
}

#quelInformationCherchez {
    width: 17vw;
}

select {
    width: 17vw;
    background-color: transparent;
    color: rgb(0, 145, 0);
}

option {
    background-color: #000000;
    color: rgb(0, 145, 0);
}


iframe {
    height: 35vh;
    width: 75vw;
    margin-top: 100px;

    background-color: #171717;
    border: solid 2px #5b5b5b;
}