body {
  font-family: roboto;
}

a {
  color: #408BA6;
  text-decoration: none;
}

.container-app {
  position: relative;
}

.container-app::after {
  content: "";
  display: block;
  position: fixed;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #408BA6;
  background: -webkit-linear-gradient(bottom, #408BA6, #F5F5F5);
  background: -o-linear-gradient(bottom, #408BA6, #F5F5F5);
  background: -moz-linear-gradient(bottom, #408BA6, #F5F5F5);
  background: linear-gradient(bottom, #408BA6, #F5F5F5);
}

.container-app::before {
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 96vh;
}

.card-template {
  background-color: rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 8px;
  width: 400px;
  max-width: 95vw;
}
.card-template:hover {
  background-color: rgba(0,0,0,0.3);
}

.card-content {
  min-height: 200px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px 16px;
}

.logo {
  max-width: 85%;
  max-height: 220px;
  height: 100%;
}

.card-text {
  font-size: 16px;
  margin-top: 16px;
}
