body {
  position: relative;
  margin: 0;
}

.navbar {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
  background-color: #086c3f;
  color: white;
  height: 5vh;
  min-height: 35px;
  padding: 4px;
  align-items: center;

  a {
    height: 100%;
    text-decoration: none;

    img {
      height: 100%;
    }

    &:visited {
      color: white;
      text-decoration: none;
    }
  }

  .dfarm-logo {
    display: flex;
    align-items: center;
    gap: 4px;

    .dfarm-title {
      color: white;
      font-family: sans-serif;
    }
  }

  .order-button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #cd5334;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .desktop-image {
    display: none;
  }
  .mobile-image {
    display: block;
    width: 100%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .desktop-image {
    display: none;
  }
  .mobile-image {
    display: block;
    width: 100%;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .desktop-image {
    display: block;
    width: 100%;
  }
  .mobile-image {
    display: none;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .desktop-image {
    display: block;
    width: 100%;
  }
  .mobile-image {
    display: none;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .desktop-image {
    display: block;
    width: 100%;
  }
  .mobile-image {
    display: none;
  }
}

