body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
    background-color: #f3f3f3;
    color: #333;
}

.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

img.profile-pic {
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

img.profile-pic:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    margin: 10px 0;
}

h1 span {
    text-transform: uppercase;
    font-weight: 900;
}

h3 {
    font-weight: 500;
    margin-bottom: 3px;
}

p {
    margin-top: 8px;
    line-height: 1.6;
}

span.font-medium {
    font-weight: 500;
}

.button-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
    max-width: 400px;
    width: 100%;
}

@media (min-width: 768px) {
    .button-group {
    grid-template-columns: repeat(3, 1fr);
    }
}

.btn {
    display: block;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ddd;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}