/* Global Box Sizing */
* {
    box-sizing: border-box;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}