:root {
  --body-bg:  #c0eeff;
  --nav-bg: #224cbfcf;
}

* {
  box-sizing: border-box;
}

html { 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  font-size: 1.25rem;
  background: var(--body-bg);
  color: white;
  display: flex;
  flex-direction: column;
}

nav {
  background-color: var(--nav-bg);
  max-height: 100svh;
  /* border-radius: 15px; */
  /* margin: 20px; */
}

.logo {
  margin-top: -70px;
  text-align: center;
  /* padding: 0.5rem; */
  font-size: 4rem;
  font-family: modak, sans-serif;
  color: var(--body-bg);
  -webkit-text-stroke: #000000 1px;
 }

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 2rem;
  justify-content: center;
  padding: 0;
  margin-top: -70px;

}


.nav-list a {
  text-decoration: none;
  color: white;
}

.pf {
  width: 3rem;
  transition: all 0.5s;
}

.pf:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.5));
}

#dexs {
  border-radius: 5px;
}