
/*---Font--*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/*---Obecné--*/
html, body{
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #222;
    background-color: rgba(34, 34, 34, 0.5)
  }

h1, h2, h5{
    padding: 1rem;
    text-align: center;
}

/*---Navbar--*/
  .navbar
{
  padding: 1rem;
}

.navbar-nav li
{
  padding-right: 10px;
}

.nav-link
{
  font-size: 1.2em;
  padding-top: 0.5em;
  
}

.BrandImg
{
    height: 2rem;
}

.col-lg-12{
    color: whitesmoke;
    padding: 2em;
    text-align: center;
    margin: 2em;
    
 }

 .col-lg-6{
    color: whitesmoke;
    padding: 2em;
    text-align: center;
 }
 .col-lg-6 img{
    padding: 2em;
 }
 
 .col-lg-3 img{
    height: 10em;
    padding-left: 5em;
 }

 .center {
    margin-left: auto;
    margin-right: auto;
  }

  /*--- Fixované pozadí, ukradeno z předchozího projektu --*/
figure {
    position: relative;
    width: 100%;
    height: 60%;
    margin: 0!important;
  }
  .fixed-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(black, black);
  }
  #fixed {
    background-image: url('picture/bigus.jpg');
    opacity: 0.5;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
  }

/*---Noha aka Footer--*/
footer{
    background-color: #222;
    color: whitesmoke;
    padding: 1rem;
    font-style: none;
  }