html{
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #474747; /* Set the background color */
  flex-grow: 1;
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

#app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.title {
  font-size: 8vw;
  font-weight: bold;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 10vw;
  font-family:Arial, sans-serif;
  position: relative;
  top: 2%
}

h2 {
  font-family:Arial, sans-serif;
}

#centerpiece {
  justify-content: center;
  display: grid;
  width: 50vw;
  height: 100%;
  transform: translate(0, 0);
}

#nav-box {
  width: 50vw;
  height: 17vw;
  display: flex;
  flex-direction: row;
  position: absolute;
  background-color: #008CB4;
  border-radius: 0.5vw;
  justify-content: space-between;
}

#left-nav {
  display: flex;
  justify-content: left;
  flex-direction: column;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

#right-nav {
  display: flex;
  justify-content: right;
  position: relative;
  flex-direction: column;
  z-index: 1;
  flex-grow: 1;
  text-align: right;
}

#circle {
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  background-color: #5AC4F6;
  left:25%;
  position: absolute;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  z-index: 2;
  align-self: center;
}

#face {
  height: 15vw;
  width: 15vw;
  top: 5vw;
  left: 5vw;
  position: absolute;
  z-index: 3;
}

.nav-section.option {
  flex-grow: 1;
}

#contact-bar {
  position: absolute;
  z-index: 0;
  width: 30vw;
  height: 15vw;
  background-color: #008CB4;
  border-radius: 0 0 22.5vw 22.5vw;
  left: 20%;
  top: 50%;
}

#middle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  flex-grow:1;
}

.content {
  flex-grow: 1;
  display: flex;
  position: relative;
  flex-direction: column;
  text-align: center;
}

#bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-grow:1;
}

a.option {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit text color */
  display: block; /* Make links behave like block-level elements */
  font-size: 1.8vw;
  font-family: arial, sans-serif;
  padding: 0.5vw;
  flex-grow: 1;
  align-content: center;
  background-color: #008CB4;
  border-radius: 0.5vw;
  transition: transform 0.1s ease;
}

#left-nav .option {
  padding-left: 1vw;
}

#right-nav .option {
  padding-right: 1vw;
}

#left-nav .option:hover {
  transform: translate(-2vw, 0);
}

#right-nav .option:hover {
  transform: translate(2vw, 0);
}

#left-hover-text {
  font-size: 1.5vw;
  font-family: arial, sans-serif;
  opacity: 0;
  padding: 2.5vw;
}

#right-hover-text {
  font-size: 1.5vw;
  font-family: arial, sans-serif;
  opacity: 0;
  padding: 2.5vw;
}

#left-hover-text.show {
  opacity: 1;
}

#right-hover-text.show {
  opacity: 1;
}






