/*
  BARVY
  pozadi stranky      #bdc3c7
  pozadi karticky     #31363b
  barva textu         #bdc3c7
  oddelovace          #3f464d
  czechitas logo      #b92e81
  tlacitko portfolio  #e74c3c
  tlacitko facebook   #3b5998
  tlacitko twitter    #1da1f2
*/

:root {
  --text-color: #ffffff;
  --divider: #444;
}

body {
  background-color: #bdc3c7;
  font-family: 'Source Sans 3', sans-serif;
  display: flex;
  color: #bdc3c7;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

h1 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.card {
  background-color:  #31363b;
  max-width: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.card-header {
  position: relative;
}

.photo {
  width: 100%;
  display: block;
  position: relative;
}

.logo-circle {
  background-color: #b92e81;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 12px;
  bottom: -22px;
  box-shadow: 3px 3px 8px black;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
}

.card-body {
  padding: 20px;;
  color:  #bdc3c7;
}

.name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: white
}

.bio {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
  color:#bdc3c7
}

.card-footer {
  border-top: 1px solid var(--divider);
  text-align: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  background-color: #000;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  box-sizing: border-box;
}

.btn + .btn {
  width: 49%;
}

.btn-portfolio:hover {
  background-color: #e74c3c;
}

.btn-facebook:hover {
  background-color:  #3b5998;
}

.btn-twitter:hover {
  background-color: #1da1f2;
}

.social-buttons {
  display: flex;
  width: 100%;
}