body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5dc; /* Bej renk */
    font-family: sans-serif;
}

..container {
    text-align: center;
}

h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.footer a {
    color: #333;
    text-decoration: none;
}

/* Küçük ekranlar için (telefonlar) */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
}

/* Orta boy ekranlar için (tabletler) */
@media (min-width: 601px) and (max-width: 1024px) {
    h1 {
        font-size: 2.5em;
    }
}