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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f7f7f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

main {
    width: 90%;
    max-width: 480px;
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 90px;
    height: auto;
}

.content {
    margin-bottom: 25px;
}

.content p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}

a {
    color: #6d4c41;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .logo img {
        width: 110px;
    }
    
    .content p {
        font-size: 1.1rem;
    }
} 