/*
Theme Name: Instant Care
Theme URI: https://www.myinstantcare.com/
Author: Instant Care
Description: Temporary placeholder theme for Instant Care website during renovation
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: instantcare
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 50px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.message {
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .message {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }

    .message {
        font-size: 14px;
        padding: 12px 24px;
    }
}
