@font-face {
    font-family: 'Audiowide';
    src: url('/static/fonts/audiowide.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* yüksekliği minimum yapıyoruz */
    overflow-y: auto;  /* mobilde scroll aktif */
}
.container {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 900px;
    animation: fadeIn 1.5s ease-out;
}
.profile {
    text-align: center;
    margin-bottom: 2rem;
}
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    animation: slideInFromTop 1.5s ease-out;
    transition: filter 0.3s ease;
}
.profile-img:hover {
    filter: brightness(1.1);
}
.name {
    margin-top: 1rem;
    font-size: 2rem;
    animation: slideInFromBottom 1.5s ease-out;
    font-family: Audiowide;
}
.about-content {
    animation: zoomIn 2s ease-out;
    font-family: Audiowide;
}
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.about-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}
.about-content p.intro {
    animation-delay: 0.7s;
}

.mobileContainer{
    display: none;
}

@media (max-width: 768px) {
    body {
        display: block; /* mobilde flex zorlamasın */
        padding: 10px;
    }

    .container {
        display: none;
    }

    .mobileContainer {
        display: block;
        padding: 15px;
        background: #1a1a1a;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.5);
        animation: fadeIn 1.2s ease-out;
    }

    .mobileImage {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        animation: slideInFromTop 1.5s ease-out;
    }

    .mobileProfile {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .mobileAboutContent h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.8rem;
        font-family: Audiowide;
    }

    .mobileAboutContent p {
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 1rem;
    }
}
.denemecontent{
    display: none;
}