/*mobile*/

/*homepage*/
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    margin: 0;
    
}

h1{
    font-size: 1.4em;
}

a{
    text-decoration: none;
}
.logoFR{
    width: 50%;
}
.logoBackground{
    background-color: black;
}
.description{
    display: flex;
    text-align: left;
    color: rgb(99, 97, 97);
    margin: 8px;
    flex-direction: column;
}
#welcomeTitle {
    color: rgb(118, 23, 23);
    text-align: center;
}
.markerHints{
    list-style-type: circle;
    padding-left: 20px;
   
}
#funText{
    text-align: center;
}
a:link{
    color: rgb(118, 23, 23);

}
#homeButtonsContainer{
   text-align: center;
}
.homeButtons{
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 10px;
    background-color: rgb(118, 23, 23);
    border: none;
    color: rgb(240, 240, 240);
}
.homeButtons a:visited{
    color: rgb(240, 240, 240);
}
a:visited{
    color: rgb(99, 97, 97);
}
#impressum{
    color: rgb(99, 97, 97);
    font-size: 15px;
    padding-left: 5px;
}
hr{
    margin-top: 5%;
}

/*Impressum*/
#titleImpressum{
    color: rgb(118, 23, 23);
    text-align: center;
}
.impressumContainer{
    display: flex;
    text-align: left;
    flex-direction: column;
    padding: 8px;
    margin: 8px;
    color: rgb(99, 97, 97);
}
#logoContainer{
    padding: 15px;
    display: flex;
    justify-content: space-evenly;
}
#logoHFU{
    width: 60%;
    padding-bottom: 25px;
}
#muensterImpressum{
    width: 55%;
}

/*AR application*/
.buttonFunctions{
    font-size: 15px;
    color: rgb(240, 240, 240);
    background-color: rgb(118, 23, 23);
    padding: 8px 10px;
    border-radius: 10px;
    border: none;
}
#text-unpause{
    font-size: 15px;
    background-color: rgb(240, 240, 240);
    width: 80%;
    border-radius: 10px;
    border: none;
    color: rgb(99, 97, 97);
    display: inline-block;
}
.unpause-container{
  text-align: center;
  position: fixed;
  top: 10%;

}
ul{
    list-style: none;
    padding: 0px;
}
h3{
    color: rgb(118, 23, 23);
    margin: 0px 0px 5px;
}
.info-background {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }

.info-content {
    background-color: rgb(240, 240, 240);
    margin: 20% auto;
    padding: 15px;
    width: 80%;
    text-align: center;
    border-radius: 10px;
    
  }
  
  #info-text {
    font-size: 18px;
    color: rgb(99, 97, 97);
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
/*tablet*/
@media only screen and (min-width: 600px){
    body{
        font-size: 1.2em;
    }
    h1 {
        font-size: 1.5em;
    }
    .titleImage{
        height: 500px;
    }
    .logoFR{
        height: 200px;
    }
    .description{
        font-size: 1.1em;
    }
    .homeButtons{
        font-size: 20px;
    }
    #impressum{
        font-size: 20px;
    }
    .impressumContainer{
        padding: 20px;
        margin: 20px;
    }
    #logoContainer{
        padding: 40px;
    }
    #logoHFU{
        width: 60%;
    }
    #text-unpause{
        font-size: 30px;
    }
    .buttonFunctions{
        font-size: 30px;
    }
    h3 {
        font-size: 30px;
    }
    #info-text{
        font-size: 30px;
    }   

}
/*desktop*/
@media only screen and (min-width: 830px) {
    .logoFR{
        width: 20%;
       
    }
    .description{
        text-align: center;
    }
    .unpause-container{
       left: 22%;

    }
    .impressumContainer{
        text-align: center;
    }
    #logoContainer{
       
        display: flex;
        justify-content: center;
    }
    #logoHFU{
        width: 50%;
        padding-right: 30px;
        
    }
    #muensterImpressum{
        width: 45%;
    }

}