body {
    background-color: #E8EAED;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: row;
}

.left {
    display: flex;
    flex-direction: column;
    width: 35%;
}

.right {
    display: flex;
    flex-direction: column;
    width: 65%;
    border-left: 1px solid gray;
    margin: 10px 10px 10px 10px;
    padding-left: 10px;
}

.wrapper-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.data__container {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    margin: 5px;
    padding: 17px;
}

.description {
    font-size: 13px;
}

.search {
    border-radius: 10px;
    border: 1px solid #000;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.imageSearch {
    border: none;
    outline: none;
    width: 95%;
}

button {
    cursor: pointer;
}