body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
}

h1 {
    color: #667eea;
    margin-bottom: 10px;
}

.status {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: bold;
}

.https {
    background-color: #4CAF50;
    color: white;
}

.http {
    background-color: #f44336;
    color: white;
}

.info {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: left;
}

.success {
    color: #4CAF50;
    font-weight: bold;
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}