/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f5f7fa;
    color: #333;
}

/* Top Left URL */
.site-header {
    padding: 20px;
}

.site-url {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Center Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    color: #666;
}