*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('https://wallpapercave.com/wp/wp6552019.jpg');
    
}

.sidenav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    height: 100%;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #c10fc1;
    overflow-x: hidden;
    border: rgb(105, 183, 214) 1px solid;
    color: rgb(105, 183, 214);
}

.content {
    display: flex;
    flex-direction: column;
    margin-left: 210px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    color: rgb(105, 183, 214)
}

img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgb(105, 183, 214);
    background-attachment: fixed;
}