* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Anaheim", monospace !important;
}

h1 {
  font-family: "Anaheim", cursive !important;
}

body {
  font-family: "Anaheim", monospace;
}

.about {
  text-align: center;
}

.container {
  padding-left: 2rem;
  padding-right: 2rem;
}

h1 {
  padding: 0.5rem;
}

.tabBtns {
  padding-bottom: 1rem;
}

button:hover,
.active {
  text-transform: uppercase;
}

.projects-container {
  column-count: 1;
  column-gap: 1rem;
  break-after: avoid;
}

@media (min-width: 600px) {
  .projects-container {
    column-count: 2;
    column-gap: 1rem;
    break-after: avoid;
  }
}

@media (min-width: 1000px) {
  .projects-container {
    column-count: 4;
    break-after: avoid;
  }
  .comic-container {
    display: grid;
    grid-template-columns: 45% 45%;
    justify-content: center; /* horizontal */
    align-items: center; /* vertical */
    place-items: center;
  }
}

@media (min-width: 1800px) {
  .projects-container {
    column-count: 5;
    break-after: avoid;
  }
}

.comic-page {
  display: grid;
  padding-top: 20px;
  place-items: center;
}

.comic-page img {
  width: 90%;
  display: block;
}
.project {
  position: relative;
  /* width:22%; */
  margin: 0 1rem 1rem 0;
  padding: 1rem;
  border: dashed #000;
  border-radius: 1rem;
  height: auto;
  display: inline-block;
}

.project:hover {
  background-color: #ff0;
  border: solid #000;
}

/* @media (max-width: 1250px) {
.project {
position:relative;
width:30%;
margin:0 1rem 1rem 0;
padding:1rem;
border:dashed #000;
border-radius:15px;
height:auto
}
} */

/* @media (max-width: 1000px) {
.project {
position:relative;
width:45%;
margin:0 1rem 1rem 0;
padding:1rem;
border:dashed #000;
border-radius:15px;
height:auto
}
}

@media (max-width: 500px) {
.project {
position:relative;
width:100%;
margin:0 1rem 1rem 0;
padding:1rem;
border:dashed #000;
border-radius:15px;
height:auto
}
} */

.project img {
  width: 100%;
}

.project-year {
  font-style: italic;
  font-weight: 300;
  padding-bottom: 2px;
  float: right;
  font-size: small;
}

.project-tag {
  font-style: italic;
  font-size: small;
  width: max-content;
}

.project-info {
  padding-top: 10px;
  font-size: small;
}
.project-title {
  font-weight: 700;
  padding: 2px;
}

footer {
  text-align: center;
  padding: 75px;
}

.project-top {
  text-align: left;
  display: flex;
}

.project-title .project-year {
  display: inline;
}
a:link {
  color: black;
  font-weight: 700;
  text-decoration: underline;
}
nav {
  padding-bottom: 20px;
}
a:hover {
  font-style: italic;
}
a:visited {
  color: inherit;
}
input[type="radio"] {
  position: absolute;
  left: -9999px;
}
