@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
         url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
         url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: #033455;
    font-family: 'Gilroy', sans-serif;
    margin: 0;
    padding: 0;
}

.site-logo {
    max-width: 100%;
    height: auto;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.site-heading {
    color: #ffffff;
    font-weight: 700; /* Use Bold version */
    font-size: 2rem; /* Default for mobile devices */
    margin-top: 1rem;
}

.site-subheading {
    color: #ffffff;
    font-weight: 400; /* Use Regular version */
    font-size: 1.5rem; /* Default for mobile devices */
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .site-heading {
        font-size: 3rem; /* Larger font size for tablets and desktops */
    }
    .site-subheading {
        font-size: 2rem; /* Larger font size for tablets and desktops */
    }
}

@media (min-width: 2000px) {
    .site-heading {
        font-size: 4rem; /* Larger font size for very large screens */
    }
    .site-subheading {
        font-size: 3rem; /* Larger font size for very large screens */
    }
}