﻿/* Reset default margins and fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
}

h1 {
    font-size: 10rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.message {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.home-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

    .home-button:hover {
        background-color: #0056b3;
    }

/* Mobile responsiveness */
@media (max-width: 480px) {
    h1 {
        font-size: 6rem;
    }

    .message {
        font-size: 1.2rem;
    }
}
