/* Font Selection */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Text Stlying */
.bold-text {
    font-weight: bold;
}

/* Page Margins */
body {
    margin: 80px 360px 80px 360px;
}

.corner-radius {
    border-radius: 0px;
}

.image {
    display: block;
    margin: auto;
    max-width: 725px;
    border-radius: 4px;
}

/* utility margin helpers */
.mt-24 {
    margin-top: 54px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

/* make header + paragraph gap-free when the header has .mb-0 */
.mb-0+p {
    margin-top: 0;
}

/* Larger paragraph */
.large-text {
    font-size: 24px;
}