@font-face {
  font-family: 'NTSomic';
  src: url('NTSomic-Bold.woff2') format('woff2');
}

.logo,
.icon-link,
.zoom-buttons-container {
  background: rgba(250, 250, 250, 0.75);
  backdrop-filter: blur(3px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  color: white;
  display: flex;
  align-items: center;
}

.logo {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  gap: 4px;
  padding-left: 10px;
  padding-right: 12px;
  pointer-events: none;
}

.icon-link {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
}

.icon {
  height: 20px;
  margin-left: 10px;
  position: relative;
}

.text {
  font-family: 'NTSomic';
  color: #333;
  font-size: 16px;
}

.zoom-buttons-container {
  position: absolute;
  top: 20px;
  left: 20px;
  /* font-size: 1.2rem; */
  text-align: center;
  padding-left: 7px;
  padding-right: 7px;
  gap: 6px;
}

.zoom-button,
.zoom-button:disabled {
  width: 40px;
  height: 40px;
  font-family: 'NTSomic';
  font-size: 30px;
  line-height: 1;
  user-select: none;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-button {
  color: #333;
  cursor: pointer;
}

.zoom-button:disabled {
  color: #999;
  cursor: not-allowed;
}

@media (max-width: 500px) {
  .top-row {
    order: 1;
  }

  .logo {
    left: 20px;
    transform: translateX(0%);
  }

  .zoom-buttons-container {
    order: 2;
    align-self: stretch;
    margin-top: 60px;
  }
}