@font-face {
    font-family: 'General Sans';
    src: url('GeneralSans-Regular.woff2') format('woff2'),
         url('GeneralSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8f5ec;
    font-family: 'General Sans', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0e3252;
    color: #f8f5ec;
    padding: 10px 40px;
    height: 60px;
}

.navbar-icon img {
    height: 40px;
    width: auto;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar-links a {
    text-decoration: none;

    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #ffd1d8;
}

/* Main section */
.parent {
    display: flex;
    justify-content: center;   
    align-items: center;       
    height: calc(100vh - 60px); 
}

.div1 {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.div1 img {
    width: 200px;
    height: auto;
}

.mainh2 {
    font-size: 92px;
    color: #0e3252;
    font-family: 'General Sans', sans-serif;
}

.email-btn {
    background-color: #f8f5ec;  /* light background */
    color: #0e3252;            /* matches navbar theme */
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background-color: #0e3252; /* light pink hover */
    color: #f8f5ec;
}

footer {
    background-color: #0e3252;
    color: #f8f5ec;
    text-align: center;
    padding: 10px 0;
    font-family: 'General Sans', sans-serif;
    font-size: 14px;
}
