/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face { 
	font-family: "Conduit ITC"; 
	src: url("./fonts/conduit_itc_regular-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal; 
	font-display: swap; 
}

#content {
  max-width: 100%;
  width: 1250px;
  color: #7e243c;
  display: grid;
}

#coolContent {
  justify-content: center;
  width: 100px;
  color: #7e243c;
}

#header {
  background-color: white;
  height: 120px;
  position: absolute;
  color: #780815;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#mashtext {
  margin-left: 10vw;
}

#aboutmeheader {
  margin-top: 5em;
  color: white;
}

#links div {
  transition: color 0.25s ease;
}

#links div:hover {
  color: red;
}

#main {
  text-align: center;
  margin-top: 5em;
  position: static;
}

#links {
  width: 100%;
  text-align: center;
  display: inline-flex;
  gap: 60px;
  justify-content: center;
  position: absolute;
  z-index: 99;
}

@media (max-width: 800px) {
  #header {
  height: 140px;
  text-align: center;
  }
}

@media (max-width: 800px) {
  #mashtext {
  margin-left: 0;
  top: 0;
  
  }
}

@media (max-width: 800px) {
  #links {
    font-size: 75%;
    margin-top: 3.5em;
  }
}

#marsgif img {
  display: block;
  max-height: 40vmax;
  max-width: 90vmin;
  object-fit: contain;
}

#main2 {
  text-align: center;
  border-radius: 25px;
  justify-content: center;
  background-color: white;
  width: 50vmax;
  max-width: 90vmin;
  display: block;
  padding-left: 2vw;
  padding-right: 2vw;
  font-size: 26px;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.link {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

.container {
  justify-content: center;
  display: flex;
  max-width: 1700px;
  width: 100%;
  flex-wrap: wrap;
}

.container div {
  border: 0.35vw outset white;
  margin: 2px;
}

.container div img {
  display: block;
  height: 35rem;
  width: 100%;
  max-height: 50vw;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.container div:hover img {
    transform: scale(1.10);
}

.aboutbod{
  background-image: url("https://mashprotato.neocities.org/newwebsite_red.png");
}

.index {
  background-image: url("https://mashprotato.neocities.org/newwebsite.png");
}

body {
  background-color: black;
  background-attachment: fixed;
  background-size: 100%;
  color: black;
  font-family: "Conduit ITC", serif;
  font-size: 24px;
}