body {
    padding-top: 140px;
    margin: 0;
    
    background: linear-gradient(to bottom, #1a1a1a, #000000);
    font-family: 'acier-bat-noir', sans-serif;
    color: white;
    min-height: 100vh;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    z-index: 1000;
    box-sizing: border-box;
}

.home-button {
    margin-left: 40px;
    font-size: 28px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
    left: -60px;
}

.nav-button {
  color: white;
  text-decoration: none;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 20px;
  transition: all 0.3s;
}

.nav-button:hover {
  background: white;
  color: #2a5298;
}

.old-nav-button {
}

}

.content {
    max-width: 1200px;
    margin: 50px auto 2rem auto;
    padding: 0 2rem;
}

.about-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.profile-image {
    flex: 0 0 40%;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
}

h1 {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    color: white;
}

p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin: 0;
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    .top-bar {
        padding: 10px 15px;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .home-button {
    margin-left: 40px;
        font-size: 24px;
        position: static;
    }

    .content {
        margin-top: 150px;
        padding: 0 1rem;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .profile-image {
        flex: 0 0 100%;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 0.9rem;
    }
}