/* intuitivnejsi box-sizing */
html { box-sizing: border-box; }
*, ::after, ::before { box-sizing: inherit; }

body {
    text-rendering: optimizeLegibility;
}

/*
 BARVY
 svetle sede pozadi      #f5f5f5
 tmavsi seda             #959595
 barevny prechod nahore  #06d7c1
 barevny prechod dole    #50cc49
 zelena cara             #06d7c1
 oranzova                #f15f42

 PISMO
 Rubik - pouzite rezy pisma regular 400 a medium 500
 https://fonts.google.com/specimen/Rubik
*/

/* ----- zde zacni psat vlastni css ----- */

* {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  body{
    background-color: #f5f5f5;
  }

  .karta{
    display: flex;
    width: 670px;
    height: 440px;
    margin: 100px auto;
  }
  section{
    padding: 30px;
  }

  .vlevo{
    background-image: linear-gradient(#06d7c1,#50cc49 );
    flex-basis: 50%;
    position: relative;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    color: white;
  }
  .vpravo{
    background-color: white;
    flex-basis: 50%;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    letter-spacing: -0.5px;
    position: relative;
  }
  .velikosti{
    display: flex;
    list-style: none;
    justify-content: space-around;
  }
  li{
    padding: 10px;
  }
  .bota{
    position: absolute;
    left: -80px;
  }
  .cenovka{
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: end;
  }
  .typ{
    color: grey;
  }
  .cena{
    font-size:28px ;
    font-weight: 500;
  }
  .zaruka{
    font-size: 12px;
    font-weight: 400;
}
h1{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
    }    
h2{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
    }
a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 35px;
  background-color:#f15f42 ;
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: white;
  border-radius: 8px;
  font-size: 14px;
}
ul{
  padding: 0;
}
.vybrano{
  color: #f15f42;
  border: #f15f42 solid 1px;
  border-radius: 50%;
}
.popis{
  padding: 20px 0px;
  border-bottom: solid aquamarine 1px;
}
