body {
    font-family: Arial, sans-serif;
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center; /* yatay ortala */
    align-items: center;     /* dikey ortala */
}

/* Container */
.container {
    background-color: rgba(224, 123, 64, 0.473);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 30%;           /* PC için */
    max-width: 400px;     /* mobilde fazla genişlemesin */
}

/* PC ayarları */
@media (min-width: 769px) {
    .container {
        width: 30%;
    }
}

/* Mobil ayarları */
@media (max-width: 768px) {
    .container {
        width: 70%;
        padding: 15px;
    }
}


/* Diğer stiller aynı kalıyor */
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    color: rgb(27,18,6);
}

.description {
    margin-bottom: 20px;
    color: rgb(34, 21, 4);
    font-weight: bold;
}

.links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.links li {
    margin-bottom: 15px;
}

.links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    background-color: rgb(100,41,12);
    display: inline-block;
    transition: transform 0.3s ease;
    width: 90%;
}

.links a:hover {
    background-color: rgb(101,42,13);
    transform: scale(1.1);
}
