/* Apply a clean font from Google Fonts */
body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive design for mobile */
@media only screen and (max-width: 600px) {
    body {
        background-color: #ffffff;
    }
}

/* Style for the image */
img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
}

/* Style for the container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title style */
h1 {
    font-size: 1.8em;
    font-weight: 600;
    color: #0d3d66;
}
