@media only screen and (max-width: 700px) {

    #skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

body {
    background-image: url("/img/zomboidbg.png");
    width: 98vw;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000000;
    color: #ffffff;
    font-family: Corbel;
    font-size: 20px;
    margin: 0;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Constantine;
}

nav {
    font-size: 20px;
    font-weight: bold;
    list-style: none;
}

nav a {
    color: #ffffff;
}

nav a:visited {
    color: #ffbb99;
}

a {
    color: #ff6600;
}

a:hover {
    text-decoration: none;
}

::-webkit-scrollbar {
    display: none;
}

::selection {
    background-color: transparent;
    color: #ff6600;
}

#statuscafe {
    margin: 20px;
    padding: 0.5em;
    color: #ffffff;
    background-color: #00000000;
    border: 2px solid #ffffff;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

#statuscafe a:link { color: #ffffff; }
#statuscafe a:visited { color: #ffffff; }
#statuscafe a:hover { color: #ffffff; }
#statuscafe a:active { color: #ffffff; }

.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #ff6600;
  color: white;
}

.page {
    display: grid;
    grid-template-rows: [content] auto [footer] 90px;
    grid-template-columns: [mobile] auto;
    grid-template-areas:
        "content"
        "footer";
    gap: 0;
    margin: 1em;
}

.logo {
    display: none;
}

.logoimg {
    display: none;
}

.menu {
    display: none;
}

.marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 40px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 10s linear infinite;
}


.content {
    grid-column: mobile;
    grid-row: content;
    grid-area: content;
    margin: 0.5em;
    width: 100%;
    background-color: #00000091;
    height: fit-content;
}

.content::-webkit-scrollbar {
    display: none;
}

.footer {
    grid-column: mobile;
    grid-row: footer;
    grid-area: footer;
    display: block;
    text-align: right;
}

.columns {
    display: flex;
    flex-direction: column;
}

.half {
    width: 90%;
    margin: 0.5em;
    padding: 1em;
    height: fit-content;
}

.half::-webkit-scrollbar {
    display: none;
}

.camera {
    width: 90%;
    height: auto;
    margin: 5px;
    border: 1px solid #ffffff;
}

.roll {
    width: 90%;
    height: auto;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    margin: 1em;
}

.title {
  width: 90%;
  background: rgba(63, 63, 63, 0.6);
  color: #ffffff;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  text-align: center;
  margin: 1em;
}

.folio {
  width: 100%;
  height: auto;
  margin: -1px;
}

.sample {
  display: inline-block;
  vertical-align: top;
  width: 98%;
  margin: 5px 5px 0px;
  background: rgba(63, 63, 63, 0.6);
  color: #ffffff;
  border: 1px solid #ffffff;
  text-align: left;
}

.example {
  width: 30%;
  height: auto;
  margin: 2px 40px 2px 2px;
  float: left;
}

.mini {
    width: 30px;
    height: auto;
}

.button {
    width: 88px;
    height: 31px;
    padding: 0px;
    margin: 0px;
}

.blinkiestack {
    display: none;
}

.blinkie {
    display: none;
}

.recipe {
    display: flex;
    flex-direction: row;
}

.list {
    display: flex;
    flex-direction: column;
}

.food {
    width: 200px;
    height: 200px;
    margin: 2em;
}

/* Style the tab */
.tab {
    font-family: 'constantine';
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    overflow: hidden;
    color: #ffffff;
    background-color: transparent;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    font-size: 20px;
    font-family: 'constantine';
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    min-height: 75px;
    margin: 1em;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ff6600;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ff6600;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    margin-top: 1em;
    height: 650px;
    overflow-y: scroll;
}

.recs {
  background: none;
  border: solid 1px #ffffff;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  height: 200px;
  display: inline-block;
  width: 85vw;
  padding:  0 0 0 15px;
  scrollbar-color: transparent transparent;
}

.rec {
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  width: auto;
  height: 150px;
  transition: transform 0.5s;
  margin: 5px;
}

.rec:hover {
  transform: scale(1.2);
}

.recinfo {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  height:500px;
  overflow-y: scroll;
  scrollbar-color: transparent transparent;
}

}