/* Consolidated Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Flex:wght@100..1000&display=swap');

/* Global Box-Sizing Reset */
*, *::before, *::after {
    box-sizing: border-box;
}
/* Base Styles */
body, html {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-y: scroll; /* Always show scrollbar to prevent layout shift */
    font-size: 16px;
}

::-webkit-scrollbar {
    display: none; /* Hides the scrollbar */
}

/* Reusable Typography Classes */
.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-roboto {
    font-family: 'Roboto Flex', sans-serif;
}
/* Responsive Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}