@import url('https://fonts.googleapis.com/css?family=Montserrat:300');

html, body {
  /* height: 100%; */
  width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background-image: url("./img/bg-login.jpg");
  background-size: cover;
}

* {
  margin: 0;
  padding: 0;
}

section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 536px;
  margin: auto;
  position: relative;
}

section:before {
  content: "";
  position: absolute;
  /* background: url("/pyramid.png") no-repeat; */
  background-size: 100%;
  width: 100%;
  height: 402px;
  z-index: -1;
}

.logo {
  width: 236px;
  height: 50px;
  background-size: 100%;
  margin-bottom: 35px;
  opacity: 0;

}

.title {
  background: url("./img/logo.png") no-repeat;
  width: 219px;
  height: 50px;
  background-size: 100%;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.30, 1) 0.2s forwards;
}

.student-card-container {
  width: 100%;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;

  .student-card {
    max-width: 58rem;

    .image-container {

      text-align: center; 
      width: 100%;

      .image-in-card {
        max-width: 70%;
        max-height: 180px;
        border-radius: 10px;
      }
    }

    .info-container {
      min-width: 10rem;
      text-align: center;
      margin-top: 15px;
    }

    .icon-space {
      margin-right: 10px;
      padding-left: 80px;
    } 
  }

  .text-status-success {
    color: #4CAF50;
  }

  .text-status-fail {
    color: #c91b1b;
  }

}

@media screen and (max-width: 928px){
  .student-card-container {
    .student-card {
      max-width: 90%;
    }
  }
}

.subtitle {
  margin-top: 25px;
  color: #BDB3CB;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.5;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.30, 1) 0.5s forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 0.2%;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
