*{ 
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
body {
    min-height: 100vh;
    background-color: #c3dff0;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: calc(100vh - 50px); /* Adjust for navbar height */
}
h1 {
    font-size: 3rem; 
    font-weight: 600;
}
h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}
nav {
    background-color: white; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  
}
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li {
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    transition: transform 0.2s ease;
}
nav a:hover {  
    transform: scale(1.1);

}
nav li:first-child A:hover {
    transform: none;
}
nav li:first-child{
    margin-right:auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter:blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%
}
.menu-button{
    display:none;
}
@media(max-width: 480px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}
@media(max-width: 300px){
    .sidebar{
        width:100%
    }
}
.content-box {
    background: white;
    padding: 2rem;
    max-width: 800px; 
    width: 90%; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;              
  margin-bottom: 1.5rem;
}
.social-icons a {
  color: black;  
  font-size: 2.2rem;  
  transition: color 0.3s; /* makes the color change smooth */
}

.social-icons a:hover {
  color: #c3dff0;
}

.focus-list {
    padding-left:1rem;   
}
.focus-list li {
    margin-bottom: 0.5rem;
}

.social-links {
    display:flex;
    flex-direction: column; /*stack vertically*/
    gap: 2rem;
    margin-top: 1.5rem;
}
.social-links a {
    display: flex;
    align-items: center;
    gap:0.5rem;
    font-size:1.2;
    color: black;
    text-decoration: none;
}
.social-links i{
    font-size: 2.2rem; /* icon size */
    transition: color 0.2s ease;
}
.social-links a:hover i {
        color: #c3dff0;
}
