:root {
    --primary-button-color: #6C63FE;
    --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}
 body {
    margin:100px 0;
    padding: 0;
    text-align: center;
    font-family: var(--body-font);
 }
.nav-link {
    text-align: left;
}
 h1,h2,h3 {
    margin: 0;
    color: black;
    font-weight: bold;
 }
h1 {
    font-size: 44px;
    font-family: var(--heading-font);
}
h2 {
    font-size: 18px;
}
h3 {
    font-size: 24px;
}
.content-container {
    padding: 160px 20px;
}
.content {
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    text-align: left;
}
.content h1 {
    font-size: 68px;
    line-height: 80px;
}
.btn-branding {
    background-color: var(--primary-button-color);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 27px;
}
.email-link {
    color: #6C63FE;
    display: flex;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
}
img {
    border-radius: 7px;
}
.contact {
    font-size: 33px;
}
