@import url('https://fonts.googleapis.com/css2?family=Didot&family=Helvetica:wght@700&display=swap');

body {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FCFCFC;
    color: black;
    letter-spacing: 0.5px; /* Slightly increased for readability */
    line-height: 1.6; /* Improved line spacing */
}

header {
    background-color: black;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.top-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.top-nav ul li {
    display: inline;
}

.top-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 1px; /* Slightly reduced for better flow */
    font-weight: normal;
    text-transform: uppercase;
}

.top-nav ul li a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.sidebar {
    width: 30%;
    background-color: white;
    padding: 20px;
    text-align: center;
    border-right: 2px solid black;
}

.sidebar img.profile-pic {
    width: 150px;
    border: 5px solid white;
    display: block;
    margin: 20px auto;
}

.sidebar h1 {
    font-size: 1.5em;
    font-family: 'Didot', serif;
    letter-spacing: 0.8px;
}

.sidebar p a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: black;
    font-size: 1em;
    letter-spacing: 0.5px;
}

.sidebar p a i {
    font-size: 1.2em;
}

.sidebar p a:hover {
    text-decoration: underline;
}

.profile-pic {
  display: block;
  width: 250px;         
  height: auto;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  image-rendering: -webkit-optimize-contrast; 
}

.content {
    width: 70%;
    padding: 40px;
}

h2 {
    color: black;
    font-size: 1.8em;
    font-family: 'Didot', serif;
    letter-spacing: 1px; /* Less condensed */
}

a {
    color: black;
    text-decoration: none;
    font-weight: normal;
    font-size: 1em;
    letter-spacing: 1px;
    display: block;
    margin: 10px 0;
    text-transform: uppercase;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: black;
    color: white;
    margin-top: 40px;
}
a {
    text-transform: none; /* Change from uppercase to normal text */
}
.blend-gradient {
    width: 300px;
    height: auto;
    display: block;
    margin: auto;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 50%, white 100%);
}
