:root {
  --hex-red: #D4070F;
  --hex-yellow: #FFDA13;
  --hex-blue: #1C1AAF;
  --light-green: #7a966b;
  --medium-green: #597c47;
  --dark-green: #476338;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #333333;
}

h1 {
  font-weight: 900;
}

a {
  color: #506f3f;
}

select:hover, option:hover {
  cursor: pointer;
}

main {
  background-image: url(assets/flowers.png);
  background-size: cover;
  background-repeat: no-repeat;
}

footer {
  background-color: #333333;
  color: white;
  width: 100%;
  height: min-content;
  display: flex;
  justify-content: center;
  position: relative;
}

footer li {
  justify-content: center;
  align-content: center;
}

footer small {
  position: absolute;
  right: 0.5vw;
  bottom: 0.5vh;
}

footer small a {
  color: #7a966b;
}

.page-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
}

.page-content {
  background-color: white;
  margin: 1rem;
  padding: 0.2rem 1rem 1rem;
  border: 2px solid #333333;
  box-shadow: 10px 5px 5px #333333;
}

.header-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  display: flex;
  justify-content: center;
}

.header-nav li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

.header-nav li a.active {
  background-color: #597c47;
  pointer-events: none;
}

.header-nav li a:hover {
  background-color: #111111;
}

.header-nav li a.hex-button {
  font-family: 'Peralta', Arial, Helvetica, sans-serif;
  background-color: white;
  color: black;
}

.header-nav li a.hex-button:hover {
  background-color: #dddddd;
  color: black;
}

.supervisor {
  padding-left: 3rem;
  margin-top: 0rem;
}

.stuff-box {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.stuff-box h2, .stuff-box p {
  margin-right: 10px;
}

.stuff-box img {
  width: 50vw;
  border: 1px solid #333333;
}

.stuff-box video {
  border: 1px solid #333333;
}

.column {
  margin: 0;
}

@keyframes wonk {
  0% {
    clip-path: ellipse(100% 100% at center);
  }
  5% {
    clip-path: ellipse(100% 0% at center);
  }
  8% {
    clip-path: ellipse(100% 10% at center);
  }
  12% {
    clip-path: ellipse(100% 100% at center);
  }
  100% {
    clip-path: ellipse(100% 100% at center);
  }
}

.wink {
  animation-timing-function: cubic-bezier(1, 0.5, 0.5, 0);
  animation-duration: 6s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-name: wonk;
}

#language {
  position: absolute;
  right: 1vw;
  top: 0.5vh;
  color: white;
}

#home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#home-page h1 {
  background-color: white;
  width: fit-content;
  text-align: center;
  padding: 1rem;
  border: 2px solid #333333;
  box-shadow: 10px 5px 5px #333333;
}

#subtitle {
  font-size: large;
  font-weight: 700;
}

#headshot {
  width: 15vw;
  border-radius: 50%;
  border: 2px solid #333333;
  box-shadow: 10px 5px 5px #333333;
}

#piano-singing {
  background-color: var(--medium-green);
  color: white;
  font-size: large;
}

#piano-singing img {
  justify-content: end;
}

#videos {
  background-color: var(--dark-green);
  color: white;
}

#videos p {
  font-size: medium;
}

#videos ul {
  list-style-type: none;
  display: flex;
}

#videos li {
  padding-left: 2vw;
}

#videos li p {
  margin-block: 0;
}

#videos video {
  width: 25vw;
}

#contact-page {
  text-align: center;
}

#contact-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

#contact-links li {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
}

#contact-links li img {
  width: 2vw;
}