/* CSS Document */

html{
	position: relative;
	min-height: 100%;
}
	
.loader{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('../sources/loader.svg') 50% 50% no-repeat rgb(255,255,255);
}
    
body{
	margin: 8px 8px 100px;
    font-family: 'Roboto';
}

.desktopoveZahlavi{
    display: inline-block;
    text-align: center;
}
    
.mobilniZahlavi{
    display: inline-block;
}
    
.desktopovaProfilovka{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
}
    
.mobilniProfilovka{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
    
.nadpis{
    display: inline-block;
    line-height: 0px;
    font-size: 75px;
    margin-left: 10px;
}
    
hr{
    border: 1px solid gray;
}
    
.desktopMenu{
    text-align: center;
    padding: 10px;
}
    
.volba{
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    background-color: gray;
    transition: 0.3s;
    width: 100%;
}
    
.volba:hover:not(.active){
    background-color: #ff6600;
    color: white;
}
    
.active{
    background-color: #ff6600;
    color: white;
}
    
.mobilniMenuTlacitko{
    display: block;
    width: 100%;
    text-align: left;
    font-size: 15px;
    border: none;
    padding: 20px;
    background-color: gray;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
    
.mobilniMenuTlacitko:hover{
    background-color: #ff6600;
}
    
.mobilniMenu{
    position: relative;
}
    
.mobilniMenuObsah{
    display: none;
    position: absolute;
    width: 100%;
    background-color: gray;
}
    
.mobilniMenuObsah a{
    display: block;
    padding: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}
    
.mobilniMenuObsah a:hover, .mobilniMenuObsah a:active{
    background-color: #ff6600;
}
    
.mobilniMenu:hover .mobilniMenuObsah{
    display: block;
}
    
.desktop{
    text-align: center;
    display: block;
}
   
.mobil{
    text-align: center;
    display: none;
}

.uvitani{
    text-align: center;
}
   
.obsah{
    display: block;
    width: 633px;
    margin: 0 auto;
    text-align: justify;
}
    
.text{
    font-size: 24px;
}
    
.zapati{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
	height: 60px;
	overflow: hidden;
}
    
@media(max-width: 650px){
    .desktop{
        text-align: center;
        display: none;
    }
        
    .mobil{
        text-align: center;
        display: block;
    }
       
    .obsah{
        width: 100%;
    }
}