body {
    background: url('../images/background_profile.jpg') repeat;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px 40px;
    box-sizing: border-box;
}

h1 {
    font-size: 3em; /* Larger size for the main text */
    font-weight: bold; /* Make the title bold */
    margin: 0 0 24px;
    text-align: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    width: min(100%, 980px);
}

.image-container a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    padding: 18px 16px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.circular-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.35);
}

.image-container a:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.32);
}

a {
    text-decoration: none;
    color: white;
    text-align: center;
}

a p {
    margin: 0;
    font-size: 18px;
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.2em;
    }

    .image-container a {
        min-width: 135px;
        padding: 14px 12px;
    }

    .circular-image {
        width: 120px;
        height: 120px;
    }
}

