/* Page background and base font styles */
body {
    background: linear-gradient(120deg, #f0f4f8 0%, #c2e9fb 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 20;
    padding: 20;
}

/* Main content container styling */
.container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: center;
}

/* Heading style */
h1 {
    color: #2b5876;
    margin-bottom: 16px;
}

/* Profile image style */
img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Paragraph style */
p {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 24px;
}

/* Links container: flex layout and spacing */
.links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

/* Individual link button style */
.links a {
    background: #2b5876;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

/* Link hover effect */
.links a:hover {
    background: #4e4376;
}

/* YouTube video iframe style */
iframe {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
/* Removed stray lines at the end of the file to fix CSS errors and scrolling issues */

input[type="number"], input[type="color"], input[type="password"], input[type="text"] {
  padding: 8px 12px;
  border: 1.5px solid #2b5876;
  border-radius: 8px;
  font-size: 1em;
  margin: 6px 0;
  outline: none;
  transition: border-color 0.2s;
}

input[type="number"]:focus, input[type="color"]:focus, input[type="password"]:focus, input[type="text"]:focus {
  border-color: #4e4376;
  box-shadow: 0 0 4px #4e437633;
}

button {
    background: #2b5876;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1em;
    margin-left: 32px;
}
button:hover {
    background: #4e4376;
}