/*
Theme Name: Magnus & Schouppe
Theme URI: https://magnus-schouppe.be/
Author: Lennert Magnus & Laura Schouppe
Description: Minimal wedding website theme for Magnus & Schouppe.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: magnus-schouppe
*/

:root {
    --paper: #faf7f1;
}

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

html {
    background: var(--paper);
}

body {
    background: var(--paper);
    color: #fbf8f2;
    font-family: Georgia, 'Times New Roman', serif;
}

.wedding-site {
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.save-the-date {
    display: block;
    width: min(88vw, 1000px);
    height: auto;
    margin: 0 auto;
}

/* Future registration page */
.registration {
    box-sizing: border-box;
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    padding: 64px 0;
}

.registration h1 {
    font-weight: 400;
    text-align: center;
    letter-spacing: .08em;
}

.registration-inner {
    background: rgba(255,255,255,.45);
    padding: 32px;
}

@media (max-width: 600px) {
    .registration {
        padding: 36px 0;
    }

    .registration-inner {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .save-the-date {
        width: 94vw;
    }
}
