/* Reset and Base Styles */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: "Raleway";
 line-height: 1.5;
 color: #292b33;
 background-color: #ffffff;
}

a {
 color: inherit;
 text-decoration: underline;
}

/* Typography */
.font-playfair {
 font-family: "Playfair Display";
}

.font-raleway {
 font-family: "Raleway" !important;
}

.font-bold {
 font-weight: 700;
}

.font-semibold {
 font-weight: 600;
}

.font-normal {
 font-weight: 400;
}

.italic {
 font-style: italic;
}

/* Utilities */
.text-center {
 text-align: center;
}

.relative {
 position: relative;
}

.absolute {
 position: absolute;
}

/* Container */
.container {
 width: 100%;
 max-width: 1141px;
 margin: 0 auto;
 padding: 0 1rem;
}
