body {
background:#f3f4f6;
font-family: Helvetica, Arial, sans-serif;
margin:0;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
color:#333;
}

/* Card container */

.container {
width:100%;
max-width:520px;
padding:20px;
}

/* Card */

.card {
background:white;
padding:50px 46px;
border-radius:12px;
box-shadow:0 12px 32px rgba(0,0,0,0.10);
text-align:left;
position:relative;
animation:fadein 0.6s ease;
}

/* Accent bar */

.card::before {
content:"";
position:absolute;
left:0;
top:0;
bottom:0;
width:5px;
background:#e5e7eb;
border-radius:12px 0 0 12px;
}

/* Name */

h1 {
font-size:38px;
margin:0 0 6px 0;
letter-spacing:-0.5px;
}

/* Tagline */

.tagline {
color:#6b7280;
margin-bottom:28px;
font-size:18px;
}

/* Location */

.location {
font-weight:600;
margin-bottom:24px;
}

/* Contact */

.contact-row {
display:flex;
margin-bottom:14px;
font-size:16px;
}

.label {
width:80px;
color:#888;
}

/* Links */

a {
color:#2563eb;
text-decoration:none;
transition:opacity .15s ease;
}

a:hover {
opacity:0.7;
}

/* Footer */

footer {
margin-top:26px;
font-size:13px;
color:#999;
}

/* Mobile */

@media (max-width:600px) {

body {
padding:20px;
height:auto;
align-items:flex-start;
}

.card {
padding:34px 28px;
}

h1 {
font-size:30px;
}

.contact-row {
flex-direction:column;
margin-bottom:16px;
}

.label {
margin-bottom:2px;
}

}

/* Fade animation */

@keyframes fadein {
from {
opacity:0;
transform:translateY(10px);
}
to {
opacity:1;
transform:translateY(0);
}
}