@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    background-image: url('../images/logo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.under-construction {
    background-image: url('../images/under-construction.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 350px;
    width: 100%;
    max-width: 100%;
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    max-width: 100%;
    max-font-size: 16px;
    min-font-size: 12px;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333333;
    color: #FFFFFF;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    .logo {
        height: 100vh;
        width: 100vw;
    }
    
    .under-construction {
        height: 250px;
    }
    
    .footer {
        font-size: 14px;
    }
}

/* Surface Pro specific styles */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .logo {
        height: 800px;
    }
}
