body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #f5f5dc; /* Light beige/cornsilk color */
}

.profile_image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.5);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 100px; */
    /* width: 100%; */
    background-color: tan;
    border-radius: 10px;
    padding: 10px 10px;
    margin: 10px 10px;
    box-sizing: border-box;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.5);
}

h1 {
    background-clip: padding-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    font-size: 5em;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.5);
    font-weight: bold;
}