/* linear gradient tvoří přechod mezi dvěma barvami v určitém směru (z leva do prava) */
body {
    background: linear-gradient(to right, rgb(255, 219, 219), rgb(226, 98, 146));
  }

  
/* font-family nastavuje font písma */
 h1 {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  p { 
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
 

/* display, flex-wrap, justify-content a align-items nastavuje jak se budou za sebe řadit fotky v divu */
 div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 } 


/* background-color:transparent; nastavuje průhledné pozadí */
/* text-decoration:none; nas nechá zmizet podtrhnutí textu v <a> */
/* border-radius, border-width, border-style a border-color vytvoří bílý okraj */
 .button-class {
  width: 104px;
  height: 20px;
  padding: 15px 32px;
  margin-left: 47.5px;
  margin-right: 47.5px;
  margin-top: 30px;
  background-color:transparent;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  color: white;
  border-radius: 15px;
  border-width: 3px;
  border-style: solid;
  border-color: white;
}


/* a.button-class:hover nastavuje hodnoty po najetí kurzorem na tlačítko (mění barvy na opačné) */
a.button-class:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(226, 98, 146);
  border-color: rgb(226, 98, 146);
}


.image-class {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  width: 15%;
  border-radius: 15px;
  border-width: 3px;
  border-style: solid;
  border-color: white;
}
