﻿body {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    height: 100vh; /* Sayfanın tamamını kaplar */
    margin: 0;
}
.baslik {
    margin-top: 60px;
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.6em;
    text-align: center;
    color: #333;
}
.footer {
    display: block;
    font-size: 1.4em;
    color: #333; /* Başlık rengi */
    font-weight: bold;
    text-align: center;
}
a {
    color: #ff0000; /* Başlık rengi */
    text-decoration: none;
}
    a:hover {
        color: #0094ff; /* Başlık rengi */
        animation: alternate infinite 1s;
    }
.footer2 {
    margin-top: 60px;
    display: block;
    font-size: 1.2em;
    text-align: center;
}
    .footer2 a {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

.img {
    display: inline-block;
}
.img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* typical phone screen resolution */
@media (max-width: 768px) {

    .baslik {
        font-size: 1.8em;
    }
    .footer {
        font-size: 1.6em;
    }
    .img img {
        width: 70%;
    }
}
