@font-face {
  font-family: "Pobeda";
  src: url("../fonts/pobeda-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Pobeda";
  src: url("../fonts/pobeda-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
body {
  background-color: rgba(245, 227, 196, 0.3);
}

header > .container {
  padding: 1rem 0;
}

.branding {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .logo {
    padding: 10px;
  }
}

h1.name {
  margin-bottom: 0;
  color: #e7362c;
  font-size: 64px;
  font-weight: bold;
  font-family: "Pobeda", sans-serif;
}
@media (max-width: 768px) {
  h1.name {
    font-size: 48px;
    line-height: 1;
  }
}

h2.subname {
  font-family: "Pobeda", sans-serif;
  font-size: 20px;
}
@media (max-width: 768px) {
  h2.subname {
    font-size: 16px;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav .btn {
  font-family: "Pobeda", sans-serif;
  flex-basis: 46%;
  margin: 4px 0;
  background-color: #ea6511;
  border-color: #ea6511;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}
.nav .btn:hover, .nav .btn:focus, .nav .btn:active, .nav .btn.active {
  background-color: #e7362c;
  border-color: #e7362c;
}
@media (max-width: 768px) {
  .nav {
    justify-content: space-around;
  }
}

.container.main-content {
  background-color: rgb(245, 227, 196);
  padding-top: 12px;
  border-radius: 8px;
}

.card {
  background-color: #ea6511;
  border: none;
}
.card a {
  transition: all 0.2s linear;
  color: white;
  text-decoration: none;
  text-align: center;
}
.card a:hover, .card a:active, .card a:focus {
  color: #fec8ad;
}
.card h4.card-title {
  font-size: 20px;
}

.img-vert-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  height: 220px;
}

.card-img-top {
  transition: all 0.3s ease-out;
}
.card-img-top:hover {
  transform: scale(1.05);
}

.footer-img {
  width: 100%;
  height: auto;
}

.copyright {
  color: #727272;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 0 0 1rem;
}/*# sourceMappingURL=style.css.map */