/* latin-ext */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyx615IDhunJ_o.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyya15IDhunA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyx615IDhunJ_o.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyya15IDhunA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyx615IDhunJ_o.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QlddNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLyya15IDhunA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* general style */
/* color-scheme: light dark; */
:root {
  --background-light: rgba(230, 230 ,230 , 1);
  --background-dark: black;
  --text-light: black;
  --text-dark: white;
  --card-background: rgba(230, 230, 230, 1);
  /*color-scheme: light dark;*/
}

body {
	font-family: 'Inconsolata', monospace;
	background-color: light-dark(var(--background-light), var(--background-dark));
	color: light-dark(var(--text-light), var(--text-dark));
  width: 75%;
  margin: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 1000px) {
	body {
    width: 90%;
	}
}

#header, #footer {
	flex-grow: 0;
	flex-shrink: 0;
  margin-bottom: 25px;
}

#content {
	flex-grow: 1;
}

#footer {
	margin-top: 50px;
  margin-bottom: 50px;
}

#top-navigation {
	display: flex;
	flex-direction: row;
	gap: 5%;
}

#bottom-navigation {
	display: flex;
	flex-direction: row;
	gap: 5%;
}

.divline {
	border-bottom: 1px light-dark(black, white) solid;
	margin-bottom: 15px;
}

details summary > * {
  display: inline;
}

fieldset {
  margin-bottom: 2%;
}

.bike-input {
  margin-bottom: 1%;
}

.list-general {
  list-style-type: none;
	display: flex;
	flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  padding: 0px;
}

.list-item {
  background-color: light-dark(white, rgb(75, 75, 75));
  flex: 1 0 40%;
  padding: 10px;
  border-radius: 5px;
}

@media only screen and (max-width: 600px) {
  .list-general {
    flex-direction: column;
  }

  .list-item {
    flex: 1 0 80%;
  }
}

/* link styling */
a {
  color: light-dark(var(--text-light), var(--text-dark));
	text-decoration: none;
}

a:visited:not(h1 *) {
	color: light-dark(rgb(100, 100, 100), white);
}

a:hover {
	color: light-dark(rgb(150, 150, 150), rgb(200, 200, 200));
}

/* text styling */
h1 {
  font-size: 75px;
}

.breaker {
  color: darkred;
}

.fine {
  color: darkgreen;
}

/* image styling */
.blog-image {
  border: thick white solid;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 450px) {
  .blog-image {
    max-width: 80%;
    height: auto;
  }
}

/* Image Portfolio Styling */

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  grid-auto-rows: auto-fit;
  grid-gap: 10px;
  grid-auto-flow: dense;
}

.portfolio-image {
  width: 100%;
  height: 100%;
}

/* Vertical Image (Fujifilm Metadata) */
.orientation-6, .orientation-8 {
    grid-row: span 2;
}

/* Horizontal Image (Fujifilm Metadata) */
.orientation-1, .orientation-3 {
    grid-column: span 2;
}

.modal {
  position: fixed; /* line I changed */
  overflow: auto; /* line I added */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
}
.hidden {
  display: none;
}

.modal_content {
  margin: auto 0;
  width: 100px;
  height: 300px;
  background-color: #999999;
  border: 3px solid red;
}

