* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    background-color: rgb(255, 255, 255);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    margin: auto;
    max-width: 400px;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-image {
    width: 45%; /* Zet de breedte op 45% voor kleinere afbeeldingen */
    max-width: 150px; /* Stel een maximale breedte in als limiet */
    border-radius: 10px;
}

.title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 2em;
    color: #FF69B4;
    margin-top: 10px;
    text-align: center;
}

.subtitle {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-size: 1.2em;
    color: rgb(1, 1, 1);
}

.link-buttons {
    margin-top: 20px;
}

.button-23 {
    background-color: #FFFFFF;
    border: 1px solid #FF69B4;
    border-radius: 8px;
    box-sizing: border-box;
    color: #222222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 13px 23px;
    margin: 10px auto;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.1s;
    width: auto;
    max-width: 300px;
}

.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px; /* Adds space between icon and text */
}

.button-23:focus-visible {
    box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
}

.button-23:active {
    background-color: #F7F7F7;
    border-color: #000000;
    transform: scale(0.96);
}
