﻿html, body {
    height: 100%;
    margin: 0;
}

.container {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('/d/arkaplan.jpg');
    background-size: cover;
    background-position: center;
}

.buttons-container {
    position: absolute;
    bottom: 20px; /* Butonları en aşağıya hizalar */
    left: 50%;
    transform: translateX(-50%); /* Butonları tam ortalar */
    display: flex;
    gap: 10px; /* Butonlar arasında boşluk bırakır */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

    button.accept {
        background-color: #28a745;
        color: white;
    }

    button.reject {
        background-color: #dc3545;
        color: white;
    }
