/* Bilgisayar ekranı */
@media only screen and (min-width: 1200px)
{
    .sayfa
    {
        width: 50%;
        height: auto;
        color: whitesmoke;
        background-color: #242526;
        margin: 50px auto;
        padding: 30px;
        border-radius: 20px;
        position: relative;
        align-items: center;

        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;

        place-items: center;
    }

    .geri
    {
        position: absolute;
        top: 20px;
        left: 20px;
        cursor: pointer;
    }
    
    .buton1
    {
        width: 50%;
        border-radius: 10px;
        padding: 10px 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        background-color: #d6b16e;
    }
}

/* Telefon ekranı */
@media only screen and (max-width: 767px)
{
    .sayfa
    {
        width: 75%;
        height: auto;
        color: whitesmoke;
        margin: 50px auto;
        background-color: #242526;
        padding: 30px;
        border-radius: 20px;
    
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .buton
    {
        border-radius: 10px;
        padding: 10px 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
    }

    .buton1
    {
        border-radius: 10px;
        padding: 10px 20px;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        background-color: #d6b16e;
    }
}