body {
  background: var(--bs-secondary-color);
}

#mainlogocon {
  width: inherit;
  height: inherit;
  justify-content: space-between;
  display: flex;
  align-items: inherit;
  flex-direction: row;
}

@media (max-width: 768px) {
  #logoholder {
    background-image: url("logopicone.png");
    height: 40px;
    margin-left: 1px;
    width: 140px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (min-width: 768px) {
  #logoholder {
    background-image: url("logopicone.png");
    height: 60px;
    margin-left: 10px;
    width: 140px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  #options_icon {
    width: 35px;
    color: white;
    position: relative;
    margin-right: 5px;
    align-self: center;
    height: 35px;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  #options_icon {
    width: 35px;
    color: white;
    align-self: center;
    height: 35px;
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  #navbar {
    display: flex;
    flex-direction: column;
    height: inherit;
    justify-content: center;
    width: inherit;
  }
}

@media (min-width: 768px) {
  #navbar {
    display: flex;
    flex-direction: row;
    height: 35px;
    justify-content: center;
    width: inherit;
  }
}

@media (max-width: 768px) {
  .nav_link {
    color: white;
    margin: 5px;
    margin-right: 0;
    font-size: x-large;
    margin-left: 5px;
    align-self: start;
    text-decoration: none;
    transition: all 0.3s;
  }
}

@media (min-width: 768px) {
  .nav_link {
    color: white;
    margin: 5px;
    margin-right: 40px;
    align-self: center;
    text-decoration: none;
    transition: all 0.3s;
  }
}

.nav_link:hover {
  font-size: large;
  color: var(--bs-blue);
}

