:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  cursor: url("customCursor/p3-medium.cur"), auto;
}

a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
label[for],
summary,
select {
  cursor: url("customCursor/p1-medium.cur"), pointer;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #f2dacb;
}

body {
  overflow: hidden;
}

.education-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.education-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106vw;
  height: 106vh;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.home-link {
  position: fixed;
  top: 0;
  left: clamp(0.45rem, 1vw, 0.85rem);
  z-index: 30;
  display: block;
  width: clamp(64px, 5vw, 82px);
  aspect-ratio: 649 / 419;
  border-radius: 0;
  background-image: url("homeButton/hb1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-decoration: none;
  transition: transform 160ms ease;
}

.home-link:hover,
.home-link:focus-visible {
  background-image: url("homeButton/hb2.png");
  transform: translateY(-1px);
}

.home-link:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.3);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .home-link {
    transition: none;
  }
}
