/*
Theme Name: Minimal Center
Theme URI: 
Author: Erik
Description: A minimal WordPress theme that only displays the current page content centered horizontally and vertically.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-center
*/

/* Reset some default styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #fff;
}

/* Main content container */
.content-container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
}

/* Basic content styling */
.entry-content {
    line-height: 1.6;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Basic link styling */
a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
