@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: "Poppins", "Helvetica", sans-serif;
    text-align: center;
    background-color: #1d3b6f;
    color: white;
    text-align: center;
}
header h1 img {
    max-width: 100%;
    max-height:100%;
    filter: brightness(10);
}
header h1{
    height:3em;
}
header{
    padding:2em 2em 1em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}
header h2{
    font-size: 1.5em;
}
main{
    margin-bottom:3em;
}
main>p{
    margin-bottom: 1em;
}
.clasesList{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 0em 1.5em;
}
.claseItem{
    color: rgba(0,0,0,0.8);
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .2em;
    background-color: rgba(255,255,255,1);
    border-radius: .5em;
    padding: .5em;
    box-shadow: 0 0 .8em rgba(0,0,0,0.4);
    width:100%;
    text-align: left;
}
.claseItem h4{
    font-size: 1.15em;
}
.claseItem p{
    font-size: .8em;
    opacity: 0.9;
}
.claseItem.presenteDado{
    pointer-events: none;
    position: relative;
}
.presenteDadoDiv{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    border-radius: .5em;
    padding:.5em;
    color:white;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.claseItem a{
    background-color: #1d3b6f;
    color:white;
    padding:.5em;
    border-radius: .5em;
    text-decoration: none;
    align-self: center;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top:.5em;
}
.claseItem a:hover{
    opacity:0.7;
}
.classLinkDisabled{
    background-color: rgba(0,0,0,0.5)!important;
    pointer-events: none;
}
.classLinkDisabled:hover{
    opacity:1;
}
#pageWrapper{
    max-width: 512px;
    margin: 0 auto;
}
main>h3{
    margin-bottom: .5em;
}
.entrarAlumno{
    color: rgba(0,0,0,0.8);
    background-color: rgba(255,255,255,1);
    border-radius: .5em;
    padding: .5em;
    box-shadow: 0 0 .8em rgba(0,0,0,0.4);
    display: inline-block;
    margin:0 auto;
    text-align: center;
    margin-bottom:1em;
}
.entrarAlumno:hover{
    background-color: rgba(255,255,255,0.8);
}