@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Light ';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Bold ';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #232323; /* To Remove */
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #232323;
}

#loading-screen {
    flex: 1;
    flex-direction: column;
}

.btn-viewer{
    font-family: 'Poppins-Bold', sans-serif;
    font-weight: 600;
    font-size: 25px;
    background-color: #ff4500;
    border-color: #ff4500;
    width: 300px;
    color: #ffffff;
}

.btn-viewer:hover{
    background-color: rgba(255, 69, 0, 0.65);
    border-color: #ff4500;
    color: #ffffff;
}

.porte-title {
    font-family: 'Poppins-SemiBold', sans-serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.porte-description{
    font-family: 'Poppins-Light', sans-serif;
    font-size: 25px;
    color: #ffffff;
}

.navbar-logo{
    padding-left: 75px;
    padding-top: 40px;
}

.rigth-zone {
    width: 70%;
}

#iframe-screen{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #232323;
}

#iframe-screen iframe {
    flex: 1;
    width: 100%;
    border: 0;
}

@media (max-width: 766px) {
    .rigth-zone {
        width: 100%;
        padding: 4rem 1rem;
        text-align: center;
    }

    .porte-title {
        font-family: 'Poppins-SemiBold', sans-serif;
        font-size: 50px;
        font-weight: 600;
        line-height: 57px;
        letter-spacing: -0.04em;
        color: #ffffff;
        margin-bottom: 2rem;
    }

    .porte-description{
        font-family: 'Poppins-Light', sans-serif;
        font-size: 24px;
        color: #ffffff;
    }

    .navbar-logo{
        padding-left: 50px;
        padding-top: 20px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .rigth-zone {
        padding: 4rem 2rem;
        text-align: center;
    }
}