@font-face {
    font-family: 'mont-semibold';  /* Give a name to your font */
    src: url('mont.ttf') format('truetype');
    font-weight: semibold;
    font-style: semibold;
}

body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    font-family: 'mont-semibold';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
}

.centered-logo {
    max-width: 80%; 
    height: auto; 
    max-height: 40vh; 
}

.centered-text {
    font-size: 32px;
    text-align: center;
    padding-top: 40px;
}

.parent-company-relation {
    font-size: 20px;
    text-align: center;
    padding-top: 40px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .centered-text {
        font-size: 24px; /* Reduce font size on smaller screens */
    }
}
