* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    scroll-behavior: smooth;
}

:root {
    --dark-blue: #0f2233;
    --gold: #d4af37;
    --gold-light: #6e329c;
    /* updated to user-specified gold */
    --hiw-fill: #ffd9e8;
    --white: #ffffff;
    --text-light: #c7c7c7;
    /* muted text set to user-specified value */
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--dark-blue);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}