body {
  margin: 0;
  background-color: #f3f4f8; }

.demo-entry {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
  @media (max-height: 800px) {
    .demo-entry {
      margin: 100px 0; } }

.demo-entry-card {
  width: 640px;
  height: 800px;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 40px;
  text-align: center; }
  .demo-entry-card__title {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    color: rgba(6, 12, 25, 0.85); }
  .demo-entry-card__description {
    font-size: 15px;
    line-height: 22px;
    color: rgba(6, 12, 25, 0.85);
    margin-top: 24px; }

.demo-entry-roles {
  padding: 40px; }

.demo-entry-role {
  margin: auto;
  width: 400px;
  padding: 32px 24px;
  text-align: left;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 6px 20px 0 rgba(50, 56, 66, 0.06), 0 2px 8px 0 rgba(50, 56, 66, 0.06);
  cursor: pointer;
  transition: transform 0.3s;
  background-repeat: no-repeat;
  background-size: 180px 116px;
  background-position: right; }
  .demo-entry-role:not(:last-child) {
    margin-bottom: 24px; }
  .demo-entry-role:hover {
    transform: translateY(-4px); }
    .demo-entry-role:hover .demo-entry-role__name {
      color: #447ae6; }
  .demo-entry-role__name {
    font-size: 18px;
    line-height: 28px;
    color: rgba(6, 12, 25, 0.85);
    margin-bottom: 4px;
    font-weight: bold;
    transition: color 0.3s; }
  .demo-entry-role__description {
    font-size: 14px;
    line-height: 20px;
    color: rgba(6, 12, 25, 0.45); }
  .demo-entry-role_admin {
    background-image: url("../images/demo-entry/staff.png"); }
  .demo-entry-role_teacher {
    background-image: url("../images/demo-entry/teacher.png"); }
  .demo-entry-role_student {
    background-image: url("../images/demo-entry/student.png"); }
  .demo-entry-role_guardian {
    background-image: url("../images/demo-entry/guardian.png"); }
