@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
* {/*VSETKY*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{/*VSETKY*/
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{/*VSETKY*/
    min-height: 100vh;
    background-image: url(fotky/22nba-edwards-videoSixteenByNineJumbo1600.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bolder;
    padding: 1% 3% 0% 3%;  
    box-sizing: border-box;
    position: relative;  
    overflow: hidden;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0);
}
a {/*VSETKY*/
    text-decoration: none;
    color: white;
}
header{/*VSETKY*/
    display: flex;
    font-size: 1.7rem;
    justify-content: space-between;
}
.navbar{/*VSETKY*/
    display: flex;
    justify-content: space-between;
    background-color: rgb(61, 61, 61);
    width: 100vw;
    border-radius: 100px;
}
#menu{/*VSETKY*/
    display: none !important;
}
.mobilne-menu-content{/*VSETKY*/
    display: none;
}
.mobilne-menu{/*VSETKY*/
    display: none !important;
    flex-direction: column;
    position: absolute;
    background-color: rgb(61, 61, 61);
    border: solid white 4px;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 20px;
    z-index: 999;
    width: 92vw;
    font-size: x-large;
}
.mobilne-menu a:active{/*VSETKY*/
    color: #d43d06;
    transform: scale(0.8);
}
.navbar-lavo{/*VSETKY*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw;
    height: 75px;
    padding: 0 10px 0 10px;
    border-radius: 100px;
}
.navbar-lavo nav{/*VSETKY*/
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}
.navbar-pravo{/*VSETKY*/
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10px 0 10px;
    width: 15vw;
}
#skola{
    color: #d43d06;
}
.jazyk{/*VSETKY*/
    background: none;
    border: none;
    font-size: 1.7rem;
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0);
    cursor: pointer;
}
.navbar-lavo a:hover, .navbar-pravo button:hover{/*VSETKY*/
    color: #d43d06;
    transition: 0.5s;
    transform: scale(1.20);
}
footer {/*VSETKY*/
    text-align: center;
    padding: 0.3rem 0;
    font-size: 1rem;
    background-color: rgb(61, 61, 61);
    position: relative;
    box-sizing: border-box;
    margin: 0 -5% 0 -5%;
}
main{   
    text-align: center;
    margin: 2%;
    border-radius: 15px;
    overflow-y: hidden;
    padding: 2%;
}
.obal_skola{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 3% 2% 3% 2%;
    gap: 20px;
}
#skola_text{
    width: 60vw;
    font-weight: normal;
}
main h1{
    text-align: center;
}
.rozvrh{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.skola_fotky{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.skola_fotky img{
    height: 55vh;
    border-radius: 15px;
}
.skola_fotky img:hover{
    transform: scale(1.05);
    transition: 0.5s;
}
table, table td, table tr{
    border: rgb(255, 255, 255) solid 1px;
    text-align: center;
}
table td{
    font-weight: bolder;
    text-shadow: none;
}
table{
    height: 50vh;
    width: 70vw;
    background-color: rgb(20, 20, 20, 0.7);
}
.empty:hover{
    transform: scale(1);
    cursor: default;
}
.inf_content{
    width: 350px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 15px;
    border: white 2px solid;
    text-shadow: none;
}
.inf_content h1{
    padding-bottom: 20%;
}

.inf_content hr{
    border: none;
    border-top: white 4px solid;
    border-radius: 10px;
    width: 200px;
    margin: 0 auto;
}
.exit{
    margin-top: 20%;
    padding: 2%;
    background-color: white;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.exit:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.rozvrh.show, .hide.show{
    display: none !important;
} 
main.show{
    background: none;
}
#SK:active, #EN:active, .navbar-lavo a:active, .exit:active{/*VSETKY*/
    transform: scale(0.9);
}
main{/*VSETKY*/
    animation: prechod 1s ease;
}
@keyframes prechod {/*VSETKY*/
    from{
        opacity: 0.2;
        translate: 0 50%;
    }
    to{
        translate: 0 0;
    }
}
.no-click{/*VSETKY*/
    pointer-events: none;
}