@font-face {
    font-family: 'Jagerfont2';
    src: url('pirata_one/PirataOne-Regular.ttf') format('truetype');
}


body 
{
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(Jager.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
}

table {
    width: 100%;
    max-width: 500px;
    background-color: #03210fa1;
    border-radius: 10px;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


th {
    text-align: center;
    padding-bottom: 8px;
    color: #fff9f9;
    font-size: 18px;
}
                                      
label {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
    color: #ffffff; 
    font-family: Jagerfont2;
}


input[type="date"] {
    width: 93%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="date"]:focus {
    border-color: #28a745; 
}


button {
    width: 100%;
    padding: 12px;
    font-size: 25px;
    background-color: #dc5a0a; 
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px; 
    font-family: Jagerfont2;
}

button:hover {
    background-color: #dc5a0a81; 
}


@media (max-width: 600px) {
    table {
        width: 90%;
        padding: 15px;
    }

    input[type="date"], button {
        font-size: 14px;
    }
}