@font-face {
  font-family: 'Luckiest Guy';
  src: url('LuckiestGuy-Regular.ttf') format('truetype'); 
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  position: relative; 
  font-family: 'Luckiest Guy';
}

#header{
  position: fixed;
  top: 0;
  left: 0;
  height: 100px; 
  width: 100%; 
  display: flex;
  padding: 0 10px; 
  z-index: 1000;
}
#header img {
  width: 250px; 
  height: auto; 
  object-fit: contain;
  float: left;
}

ul{
  float: right;
  margin-left: 750px;
  list-style-type:none;
  margin-top: 30px;
  padding: 10px;
}

li{
  position: relative;
  display:inline-block; 
  padding:2px 10px;
  text-align:center;
}

.nav{ 
  color: black;
  font-size: 40px;
  text-decoration:none;
}
.nav:hover{
  color: #ffa089;
  font-size: 50px;
}

#circle-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

h1{
  position: absolute;
  z-index: 1;
  text-align: center;
  left: 50%; 
  transform: translateX(-50%);
  top: 15%; 
  width: 80%;
  font-size: 60px;
}

.circle {
  position: fixed;
  width: 700px;
  height: 700px;
  background-color: #3498db;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.square {
  position: fixed;
  width: 650px;
  height: 650px;
  transition: transform 0.3s ease-in-out;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 400px solid transparent;
  border-right: 400px solid transparent;
  border-bottom: 800px solid transparent;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  position: fixed;
  transition: transform 0.3s ease-in-out;
}

.flash {
  animation: flash 0.5s ease-in-out;
}

@keyframes flash {
  0%, 100% {
    background-color: black;  
  }
  50% {
    background-color: white; 
  }
}
