/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.school-container{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.property-card{
  width: 400px;
  border: 1px solid #ccc;
  padding: 20px;
}
.school-card{
  width: 320px;
  height: 520px;
  border: 1px solid;
  position: relative;
}
.logo{
  position: absolute;
  width: 200px;
  left: 60px;
  top: 30px;
}
.id{
  position: absolute;
  top: 100px;
  left: 20px;
}
.id-no{
  position: absolute;
  top: 120px;
  left: 80px;
  font-size: 22px;
}
.profile-img{
  position: absolute;
  top: 80px;
  left: 100px;
  width: 100px;
  height: 120px;
  border: 1px solid;
}
.std-name{
  position: absolute;
  top: 210px;
  left: 85px;
  font-size: 22px;
  font-weight: 700;
}
.session{
  position: absolute;
  top: 100px;
  right: 30px;
}
.session-year{
  position: absolute;
  top: 120px;
  right: 20px;
}
.fName-label{
  position: absolute;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.school-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.property-card {
  width: 400px;
  border: 1px solid #ccc;
  padding: 20px;
}
.card-height {
  width: 320px;
  height: 520px;
  border: 1px solid;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.school-card [data-id], .school-card-back [data-id] {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
}
.school-card img{
  position: absolute;
  /* border-radius: 30%; */
}
.school-card [data-id='bg'], .school-card-back [data-id='bg']{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.property-card .photo-show{
  display: none;
}
/* .selected {
  outline: 2px dashed red;
}
.logo {
  width: 200px;
  left: 60px;
  top: 30px;
}
.id {
  top: 100px;
  left: 20px;
}
.id-no {
  top: 120px;
  left: 80px;
  font-size: 22px;
}
.profile-img {
  top: 80px;
  left: 100px;
  width: 100px;
  height: 120px;
  border: 1px solid;
}
.std-name {
  top: 210px;
  left: 85px;
  font-size: 22px;
  font-weight: 700;
}
.session {
  top: 100px;
  right: 30px;
  border: 1px solid;
  width: max-content; 
}
.session-year {
  top: 120px;
  right: 20px; 
  width: max-content; 
}
.fName-label {
  top: 250px;
  left: 20px;
}
.fName {
  top: 270px;
  left: 85px;
} */
