body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #eb5ceb; /* Lavender background */
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.banner {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    border-radius: 10px;
}

.buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: left;
    font-weight: bold;
    background-color: #9026CF; /* Purple button background */
    color: #FCFF00; /* Yellow text */
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    padding-left: 20px;
    padding-right: 80px;
    border-radius: 10px;
    transition: background-color 0.3s;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Horizontal offset, vertical offset, blur radius, color */
}

.shadow-button:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4); /* Darker and larger shadow on hover */
}

.button:hover {
    background-color: #5e005e; /* Darker purple on hover */
}

.icon {
    margin-right: 20px;
}

.icon img {
    width: 40px;
    height: 40px;
}

.link-text {
    flex-grow: 1;
    text-align: center;
    font-size: 21px;
}