* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eeeeee;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.photo {
    width: 50%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.name {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.8;
    position: relative;
}

.quote-author {
    font-style: normal;
    font-size: 1rem;
    color: #7f8c8d;
    text-align: right;
    margin-bottom: 40px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border: 4px solid #ffffff;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(151, 151, 151, 0.4);
}

.link:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
}
