@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

@keyframes menu-in {
  from {
    opacity: 0;
    padding: 0 10px 10px 10px;
  }
  to {
    opacity: 1;
    padding: 10px;
  }
}

@keyframes menu-out {
  from {
    opacity: 1;
    padding: 10px;
  }
  to {
    opacity: 0;
    padding: 0 10px 10px 10px;
  }
}

body {
  margin: 0;
  color: white;
  background-color: black;
  font-family: "Montserrat", sans-serif;
}

#topbar-container {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
}

#topbar {
  transition: all ease 0.2s;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-invisible {
  width: calc(100% - 40px);
  padding: 20px 20px 10px 20px;
  background-color: #000000;
  outline: 0px solid #121212;
}

.topbar-visible {
  width: calc(100% - 40px);
  margin: 10px 10px 0 10px;
  padding: 10px;
  border-radius: 16px;
  background-color: #0a0a0a;
  outline: 1px solid #121212;
}

.logo {
  height: 50px;
}

#topbar-buttons {
  display: flex;
}

#mobile-menu {
  margin: 10px 10px 0 10px;
  padding: 10px;
  border-radius: 16px;
  background-color: #0a0a0a;
  border: 1px solid #121212;
  flex-direction: column;
  align-items: stretch;
  animation-duration: 0.2s;
  display: none;
}

.main {
  margin-top: 94px;
  padding: 0 20px;
  width: calc(100% - 40px);
  display: none;
}
