* {
  padding: 0;
  margin: 0;
  font-family: Palatino;
  color: #f0efe6;
  cursor: none;
}

body {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  background-color: #f0efe6;
}

nav {
  min-height: 10px;
  margin: 0 -10px;
}

nav ul {
  background-color: #445482;
  list-style-type: none;
  font-size: 20px;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr, 1fr, 1fr;
}

.title {
  grid-column: 2/3;
  justify-self: center;
}

.artist_statement {
  grid-column: 1/2;
  justify-self: start;
}

.video {
  grid-column: 3/4;
  justify-self: end;
  border-bottom: solid;
}

nav a {
  text-decoration: none;
}

nav img {
  width: 150px;
}

h2 {
  color: #445482;
  padding: 80px 0 40px 0;
}

p {
  line-height: 2;
  text-align: justify;
  color: #445482;
}

img {
  width: 100%;
}

video {
  width: 100%;
}

.cursor {
  background-color: #445482;
  z-index: 100;
  position: fixed;
  pointer-events: none;
  border-radius: 15px;
  visibility: visible;
}

.cursor1 {
  transition: transform 0.4s, width 0.4s, height 0.4s;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  opacity: 90%;
}

.cursor2 {
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  transition: all 100ms ease-out;
  opacity: 80%;
}

.cursor3 {
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  transition: all 200ms ease-out;
  opacity: 60%;
}

.cursor4 {
  width: 3px;
  height: 3px;
  transform: translate(-50%, -50%);
  transition: all 400ms ease-out;
  opacity: 40%;
}

.cursor.is-hidden {
  visibility: hidden;
}

.cursor.border {
  border: solid 0.2px;
  border-color: #efede6;
}

.cursor.color {
  background-color: #efede6;
}

.cursor1.size {
  width: 30px;
  height: 30px;
}
