/*
Theme Name: DevDen Simple Logo
Theme URI: https://devden.ca
Author: DevDen
Author URI: https://devden.ca
Description: A minimal WordPress theme that displays a centered DevDen logo on a black background.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devden-simple-logo
*/

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #000;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.devden-logo-page {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.devden-logo-wrap {
    text-align: center;
}

.devden-logo-link {
    display: inline-block;
    line-height: 0;
}

.devden-logo,
.custom-logo {
    max-width: min(420px, 80vw);
    width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
