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

body {
    background-color: #fff;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    display: grid;
    justify-items: center;
    align-content: start;
    padding-top: 60px;
}

.container {
    display: grid;
    gap: 3rem;
    text-align: center;
    padding: 2rem;
}

.header {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo {
    height: 80px;
    width: auto;
}

.message {
    display: grid;
    gap: 0.5rem;
}

.message p {
    font-size: 1rem;
    line-height: 1.6;
}

.admin-notice {
    font-weight: 600;
}

.message a {
    color: #000;
    text-decoration: underline;
}

.message a:hover {
    color: #0066cc;
}
