﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.timeout-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

    .timeout-box h1 {
        font-size: 36px;
        color: #4fd973;
        margin-bottom: 20px;
    }

    .timeout-box p {
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
    }

.btn-home {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5bc0de;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .btn-home:hover {
        background-color: #31b0d5;
        transform: translateY(-2px);
    }

    .btn-home:active {
        transform: translateY(0);
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
