html {
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0%;
  background-image: url("../imgs/background.png"); 
  background-size: 150px;
  animation: 5s linear infinite bgBobbing;
}

@keyframes bgBobbing{
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: 150px;
  }
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
  
  font-family: "Shantell Sans", cursive;
  box-shadow: inset 0px 0px 85px black;
}

.shantell-sans {
  font-family: "Shantell Sans", cursive;
  font-optical-sizing: auto;
  font-weight: 520;
  font-style: normal;
  font-variation-settings:
    "BNCE" 0,
    "INFM" 0,
    "SPAC" 0;
}



@view-transition {
  navigation: auto;
}

@keyframes move-in {
    from {
        transform: scale(0%) rotateZ(360deg) rotateY(180deg);
    }

    to {
        transform: scale(100%) rotateZ(0deg) rotateY(0deg);
    }
}


::view-transition-old(root) {
    animation: none;

}

::view-transition-new(root) {
    animation: 1s linear both move-in;
}




button {
  transition: all 100ms cubic-bezier(.23, 1, 0.32, 1);
}
button:hover {
  cursor: pointer;
  transform: translateY(-2px);
}

button:active {
  box-shadow: none;
  transform: translateY(4px);
  transform: scaleX(150%);
}

a {
  transition: all 300ms cubic-bezier(.52,.49,0,1.36);
}
a:hover {
  cursor: pointer;
  font-size: 110%;
  transform: translateY(-2px);
}

a:active {
  font-size: 90%;
  box-shadow: none;
  transform: translateY(4px);
  transform: scaleX(150%);
}

.navbar li{
  float: inline-start;
}

.navbar ul{
  border-radius: 5px 5px 5px 5px;
  list-style-type: none;
  color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0px;
}

.navbar a{
  transition: all 0.2s cubic-bezier(0,1.85,1,1);
  color: #000;
  font-size: 20px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.navbar a:hover{
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  
  transform: scale(1.1, 1.1);
}

.navbar a:active{
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50px;
  
  transform: scale(0.8, 0.8);
}
