<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    width: 100%;
    height: 100%;
    margin: 0px;
}

*{
    font-family: helvetica !important;
}

a{
    text-decoration: none;
    width: auto;
    display: inline-block;
}

a:hover, button:hover{
    cursor: pointer;
}

.display-inline-block{
    width: 100%;
    height: 100%;
    display: inline-block;
}

.main-content{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px 0px 0px 0px;
}

.flex-column{
    flex-direction: column;
}

.button{
    margin-top: 10px;
}

.button:hover{
    cursor: pointer;
}

.round-button{
    border-radius: 20px;
}

.register-place-button{
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: blue;
    color: white;
    border-radius: 5px;
    border: none;
    outline: none;
    font-family: 'Lucida Sans';
    font-weight: bolder;
    font-size: 18px;
}

.register-place-button:hover{
    background-color: darkblue;
}

.outline-black-button{
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: solid;
    outline-color: #000000;
    color: #000000;
    font-family: "Arial";
    font-size: 18px;
    font-weight: bolder;
}

.black-fill-button{
    width: 100%;
    height: 40px;
    background-color: black;
    border: none;
    outline: solid;
    outline-color: #000000;
    color: white;
    font-family: "Arial";
    font-size: 18px;
    font-weight: bolder;
}

.section-list{
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
}

.section{
    width: 100%;
    height: auto;
    display: inline-block;
    padding-top: 10px;
}

.introduction{
    width: 350px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    font-family: "Arial Narrow";
}

.introduction h2{
    font-size: 35px;
    text-align: center;
    margin-bottom: 0px;
}

.introduction h3{
    margin-top: 0px;
}

.introduction .categories{
    color: red;
}

.introduction p{
    text-align: center;
    margin: 0px;
    font-size: 18px;
}

.introduction .registration-login-container{
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.introduction .registration-login-container div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.introduction .try-now-button{
    background-color: #ff7b00;
    border: none;
    outline: none;
    width: auto;
    padding: 10px;
    height: auto;
    color: white;
    font-family: 'Lucida Sans';
    font-weight: bolder;
    font-size: 18px;
    margin-top: 5px;
}

.introduction .try-now-button:hover{
    background-color: #dd7201;
}

/*
.introduction button{
    height: 40px;
    background-color: #FFAA00;
    border: none;
    outline: none;
    border-radius: 20px;
    font-family: "Arial";
    font-size: 18px;
    font-weight: bolder;
    color: #882c10;
}*/

.home-image{
    width: 200px;
    height: auto;
}

.center-content{
    justify-content: center;
    align-items: center;
}

.paddding-top-100{
    padding-top: 100px;
}

.margin-top-10{
    margin-top: 10px;
}

.margin-left-10{
    margin-left: 10px;
}

.margin-right-10{
    margin-right: 10px;
}

.form{
    display: flex;
}

label{
    font-family: 'Calibri';
    font-weight: bold;
    font-size: 15px;
}

input{
    padding: 5px;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #EEEEEE;
}

select{
    height: 40px;
}

.flex-column{
    flex-direction: column;
}

.flex-row{
    flex-direction: row;
}

.align-items-start{
    align-items: start;
}

.justify-content-start{
    justify-content: start;
}

.install-webapp{
    width: 200px;
    height: 100px;
    padding: 20px;
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 0px;
    right: 0px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 5px #000;
    border-radius: 5px;
}

.install-webapp button{
    width: auto;
    height: 50px;
    padding: 10px;
    outline: #0000FF;
    background: #00AAFF;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 20px;
}

.language-container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #000000DD;
    z-index: 100;
}

.languages{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.languages a{
    width: 100%;
    height: 100%;
}

.language{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    color: white;
    margin: 10px;
    border: solid;
    border-color: #00AAFF;
    border-radius: 10px;
    padding: 10px;
}

.language-name{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: helvetica;
    font-size: 30px;
    font-weight: bolder;
}

.language .image{
    width: auto;
    height: auto;
}

.language img{
    width: 150px;
    height: 80px;
}

.footer{
    padding: 50px;
    background-color: black;
    color: white;
}

.footer-section{
    width: auto;
    height: auto;
    padding: 10px;
}


.footer .row{
    display: flex;
    justify-content: center;
}

.footer-logo{
    background-image: url('../logo-1.jpeg');
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 710px) {
    .main-content{
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 10px 0px 10px 0px;
    }
    .home-image{
        display: none;
    }

    .section-list{
        margin-top: 20px;
    }

    .introduction{
        width: auto;
        height: auto;
        padding: 12px 15px 0px 15px;
    }

    .introduction h2{
        margin-top: 0px;
    }

    .introduction .categories{
        font-size: 18px;
    }

    .introduction .registration-login-container .button{
        font-size: 12px;
        height: 30px;
    }
}

@media screen and (max-width: 430px){
    .install-webapp{
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
        left: 0px;
    }
}

@media screen and (max-width: 565px){
    .languages{
        width: auto;
    }

    .language img{
        width: 100px;
        height: 50px;
    }
}

@media screen and (max-width: 300px){
    .languages{
        width: auto;
        align-items: start;
    }
}</pre></body></html>