@font-face {
   font-family: comfortaa;
   src: url(assets/Comfortaa-Bold.ttf);
}

body {
   margin: 0;
   color: white;
   font-family: comfortaa;
   display: flex;
   flex-direction: column;
   min-height: 100vh;
}

.liquidGlass-effect {
   z-index: 0;
   backdrop-filter: blur(3px);
   overflow: hidden;
}

.liquidGlass-shine {
   z-index: 2;
   overflow: hidden;
   box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
      inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

header {
   background-image: url(assets/map.png);
   background-size: cover;
   padding: 1em;
   display: flex;
   justify-content: center;
}

.topbar {
   position: fixed;
   top: 1em;
   display: flex;
   justify-content: space-between;
   padding: 0 2em;
   align-items: center;
   border-radius: 1em;
   height: 4em;
   background: linear-gradient(90deg,rgba(0, 0, 0, 0.495), rgba(255, 255, 255, 0.547));
   width: 95%;
   box-sizing: border-box;
}

.title {
   text-shadow: 0px 0px 5px black;
   font-size: 2em;
   white-space: nowrap;
}

.icon {
   width: 50px;
   border-radius: 10px;
}

.icon-list {
   display: flex;
   gap: 8px;
}

.logo {
   max-width: 100%;
   max-height: 35vh;
   margin-top: 4em;
}

main {
   background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(57, 0, 97, 1) 62%, rgba(223, 232, 235, 1) 100%, rgba(255, 255, 255, 1) 100%);
   font-size: 1.2em;
   padding: 3rem;
   flex-grow: 1;
   display: grid;
   gap: 2em;
}

main > div {
   display: flex;
   align-items: center;
   justify-content: space-around;
   gap: 2em;

   span {
      max-width: 75%;
   }
}

footer {
   height: 4vh;
   background-color: #303030;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 1em;
   font-size: min(2vw, 10px);
   white-space: nowrap;

   a {
      color: wheat;
   }
}

@media (max-width: 720px) {
   .topbar {
      padding: 0 1em;
   }
   
   .title {
      font-size: 1.4em;
   }

   .icon {
      width: 40px;
   }

   main {
      padding: 1.4rem;
      font-size: 1.1em;
   }

   main > div {
      flex-direction: column;

      span {
         max-width: 100%;
      }

      img {
         order: 1;
      }
   }
}