/* Reset default browser margins */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Clean, modern sans-serif font stack */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #faf9f4; /* Very light earthy off-white */
    color: #334033; /* Dark green-tinted charcoal for text */
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 1rem;
}

/* Constrain the width to look like a mobile app */
.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Placeholder for a profile picture */
.profile-pic {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: #a3b18a; /* Light earthy green accent */
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Container for the buttons */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Button styling */
.link-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #ffffff;
    color: #334033;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #a3b18a; /* Light earthy green accent */
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Hover effect for mouse users */
.link-btn:hover {
    background-color: #a3b18a;
    color: #ffffff;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}