@font-face {
  font-family: futura;
  src: url('/futura.ttf');
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 1vw;
  font-family: 'futura', sans-serif;
  font-size: 1.2rem;
  background-color: #222323;
  color: #f0f6f0;
}

.container {
  display: flex;
}

.sidebar {
  width: 25%;
  padding: 1%;
  position: sticky;
  top: 1vw;
  height: fit-content;
}

.main-content {
  width: 75%;
}

.main-content img {
  width: 100%;
  margin-bottom: 3vh;
}

.mobile {
  display: none;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .sidebar {
    width: 90%;
    position: static;
    padding: 0;
    margin-bottom: 2rem;
  }

  .main-content {
    width: 90%;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}
