html{
  background: url(/images/background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body{
  height: 100vh;
  width: 100%;
  background: none;
}

header{
  width: 100%;
  height: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}

main{
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

main .container{
  max-width: 1280px;
}

header .logged a{
  color: white;
  text-decoration: none;
}

.prezi:not(:first-child){
  margin-top: 4rem;
}

/* INDEX */

.login-wrap{}

form{
  max-width: 420px;
  margin: auto;
  background-color: white;
  padding: 0 3rem 3rem 3rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: rgba(255,236,31,0.8);
}

form img{
  width: 300px;
}

form input[type="submit"]{
  width: 100%;
  background-color: rgb(255, 117, 0);
  border-color: rgb(255, 117, 0);
  text-transform: uppercase;
  font-weight: bold;
}

form input[type="submit"]:hover{
  background-color: #414141!important;
  border-color: #414141!important;
}



/* PORTAL */

.portal-wrapper{}
.portal-wrapper .portal-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  margin: 2rem;
  background: rgba(0,0,0,0.8);
  border-radius: 15px;
  text-align: center;
  height: 250px;
  transition: 0.5s;
  transform: scale(0.9);
  box-shadow: 0 1px 1px rgba(255,236,31,0.0);
}
.portal-wrapper .portal-wrap.disabled{
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(1);
}
.portal-wrapper .portal-wrap:hover:not(.disabled){
  background-color: rgba(0,0,0,1);
  box-shadow: 0 3px 30px rgba(255,236,31,0.8);
  transition: 0.5s;  
  transform: scale(1.0);
}


.portal-wrapper .portal-wrap span{
  color: white;
  font-weight: bold;
  font-size: 20pt;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.portal-wrapper .portal-wrap p{
  color: white;
  font-weight: bold;
}
.portal-wrapper .portal-wrap >a{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* SCORECARDS */

.btn-pdf-wrapper{
  display: flex;
}
.btn-pdf-wrapper .btn-pdf{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto;
  padding: 1.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  text-align: center;
  height: 250px;
  transition: 0.5s;
  height: 75px;
  width: 350px;
}
.btn-pdf-wrapper .btn-pdf:hover{
  background-color: rgba(255,255,255,0.35);
}
.btn-pdf-wrapper img{
  width: 30px;
}
.btn-pdf-wrapper span{
  color: white;
  font-weight: bold;
  margin-left: 0.5rem;
  font-size: 18pt;
  line-height: 1;
}
.btn-pdf-wrapper a{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.col-argument{
  flex: 0 0 auto;
  width: 20%;
}
.argument-wrapper{
  max-height: 500px!important;
  height: 100%!important;
}
.argument-wrapper .argument-wrap{
  position: relative;
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 25px;
  padding: 20px;
  transition: 0.5s;
}
.argument-wrapper .argument-wrap:hover{
  opacity: 0.75;
}
.argument-wrapper .argument-wrap >a{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media all and (max-width:1280px) {
  .portal-wrapper .portal-wrap span{
    font-size: 16pt;
  }
  .portal-wrapper .portal-wrap img{
    width: 50px;
  }

  .argument-wrapper .argument-wrap{
    display: flex;
    height: 125px;
    width: 125px;
  }
  
}