body
{
    font-family: 'Muli', sans-serif;
    margin: 0;
    user-select: none;
}

.invisible
{
    display: none;
}

#loading-spinner{
    border: 10px solid #f3f3f3;
    border-top: 10px solid black;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin: auto;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    animation: spin 2s linear infinite;
    z-index: 10000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*main menu header*/
header
{
    height: 100px;
    background-color: transparent;
    text-align: center;
}

.header-brand-wrapper
{
    margin-top: 33px;
}

.header-brand
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 320%;
}

.header-description
{
    color: lightslategray;
}
ul
{
    list-style-position: none;
}

li
{
    display: inline;
}

img
{
    max-width: 7%;
    height: auto;
}



/* For Mobile */
@media screen and (max-width: 540px) {
    img
    {
        max-width: 15%;
        height: auto;
    }
}

/* For Tablets */
@media screen and (min-width: 540px) and (max-width: 1100px) {

    .header-brand
    {
        color: black;
        text-decoration: none;
        font-weight: bold;
        font-size: 600%;
    }

    .header-description
    {
        color: lightslategray;
        font-size: 200%;
    }

    img
    {
        max-width: 10%;
        height: auto;
    }
}


/*main menu content*/
.content
{
    height: calc(100vh - 133px);
    position: relative;
    text-align: center;
    min-height: 350px;
    
}

.nav-container
{
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.new-notice-button-container
{
    text-align: center;
}

.download-button-container
{
    text-align: center;
}

.but
{
    font-size: 150%;
    font-weight: lighter;
}

.but:active
{
    background-color: lightgray;
}

a.download-app-button
{
    margin-top: 50px;
}

.button-icon
{
    margin-right: 5px;
    font-weight: lighter;
}

/* For small Mobile */
@media screen and (max-width: 320px) {
    .but
    {
        font-size: 120%;
        font-weight: lighter;
    }

}

/* For Mobile*/
@media screen and  (min-width: 321px) and (max-width: 540px) {
   
}

/* For Tablets*/
@media screen and (min-width: 540px) and (max-width: 1100px) {
    
    .content
    {
        min-height: 620px;
    }

    .but
    {
        font-size: 200%;
        font-weight: lighter;
    }
}

  /* For small Mobile portrait*/
@media screen and (max-width: 320px) 
{

    .modal-content 
    {
        width: 80%; /* Could be more or less, depending on screen size */
    }

    .button-finish
    {
        float: left;
    }
    
}

/* For Mobile portrait*/
@media screen and  (min-width: 321px) and (max-width: 540px) 
{
    .modal-content 
    {
        width: 80%; /* Could be more or less, depending on screen size */
    }

    .button-finish
    {
        float: left;
    }
}

/* For small Tablets */
@media screen and (min-width: 540px) and (max-width: 849px) 
{
    .modal-content 
    {
        width: 70%; /* Could be more or less, depending on screen size */
    }

    .button-finish
    {
        float: right;
    }
}

/* For big Tablets */
@media screen and (min-width: 850px) and (max-width: 1250px) 
{
    .modal-content 
    {
        width: 45%; /* Could be more or less, depending on screen size */
    }

    .button-finish
    {
        float: right;
    }
}


/*Vollbildmodus verlassen*/
.full-screen-off
{
    height: 100vh;
    margin: 0 auto;
    max-width: 100vh;
}

#full-screen-off-header
{
    font-size: 180%;
    padding: 10px;
    text-align: center;
    max-width: 100%;
}

.full-screen-button
{
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    line-height: normal;
}







