body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color: #333;
    text-align: center;
    padding: 0 10px;
}

.name {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
}

.bio, .location {
    font-size: 1.25rem;
    color: #555;
}

@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    
    .bio, .location {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2.5rem;
    }
    
    .bio, .location {
        font-size: 0.9rem;
    }
}