.container {
    display: flex;
    border: 2px solid black;
    width: 1500px;
    height: 500px;
    background: grey;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.sidebar {
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    height: 450px;
    max-width: 200px;
    padding: 7px;
    margin: 5px;
    align-content: center;
    align-items: center
}

.square-profile {
    border: 2px solid #000;
    width: 170px;
    height: 170px;
    border-radius: 2px;
}

.bio {
    border: 2px solid #000;
    height: 450px;
    width: 1000px;
    margin: 20px;
    padding: 10px;
}