﻿/* site.css - Mr Helmet App style */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #c90000;
    margin-top: 20px;
    margin-bottom: 15px;
}

p, li {
    font-size: 16px;
    margin: 10px 0;
}

ul {
    padding-left: 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section {
    margin-bottom: 25px;
}

.logo-container {
    display: flex;
    justify-content: center; /* horizontally center */
    margin-bottom: 15px;
}

.app-logo {
    width: 120px;
    max-width: 100%;
}

.tagline {
    font-style: italic;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 20px;
    }
    p, li {
        font-size: 15px;
    }
}

@media only screen and (max-width: 480px) {
    p, li {
        font-size: 14px;
    }
}