@font-face {
    font-family: 'Avenir-Medium';
    src: url('/fonts/Avenir-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-BlackOblique';
    src: url('/fonts/Avenir-BlackOblique.ttf') format('truetype');
}

/* styles.css */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: white;
    font-family: Arial, sans-serif;
}

h2 {
    color: black;
}

p {
    font-family: 'Avenir-Medium', sans-serif;
    font-size: 16px;
    color: black;
}

h5 {
    font-family: 'Avenir-Medium', sans-serif;
    font-size: 20px;
    color: black;
}

.centered-container {
    text-align: center;
}

.heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-image {
    height: 30px;
    margin-right: 10px; /* Adjust spacing between the image and heading */
}

.centered-container h2 {
    margin: 0;
    margin-left: 5px;
    font-family: 'Avenir-BlackOblique', sans-serif;
}


/* @media screen and (min-width: 767px) {
    .heading-container {
        margin-top: 20px;
    }
} */

.subtitle {
    margin-top: 10px;
    margin-bottom: 15px;
}

.centered-container .clickable-image {
    width: 210px;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}
