body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
    color: #374151;
}

.container {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 1200px;
    margin:auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #111827;
}

p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

a {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

