@import "./_colors.css";
@import "./_images.css";
@import "./_config.css";
@import "./_fonts.css";

#borderimg1 {
  border: 5px solid transparent;
  padding: 15px;
  border-image: var(--asphalt-image) 30 round;
  border-radius: var(--border-radius);
}
#borderimg2 {
  border: 5px solid transparent;
  padding: 15px;
  border-image: var(--brick-image) 50 round;
  border-radius: var(--border-radius);
}

body {
  overflow: hidden;
  background-image: var(--background-path);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: funnytype;
}

.container {
  display: grid;
  min-height: 100vh;
  gap: 8px;
  grid-template-columns: 20vw 1fr 20vw;
  grid-template-rows: 80px 1fr 80px;
  grid-template-areas:
    "hd hd hd"
    "sd-l main sd-r"
    "ft ft ft";
  min-height: 100vh;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hd"
      "sd-l"
      "main"
      "sd-r"
      "ft";
  }
}

header {
  grid-area: hd;
  /* background: rgba(53, 151, 217, 0.5); */
  /* padding: 10px; */
  margin-bottom: 2vh;
}
main {
  grid-area: main;
  background: var(--content-background-color);
  opacity: 0.9;
  /* padding: 10px; */
  border-radius: var(--border-radius);
  position: relative;
}
.sidebar-l {
  grid-area: sd-l;
  color: var(--main-color);
  /* background: rgba(255, 255, 255, 0.5); */
  padding: 10px;
  border-radius: var(--border-radius);
}
.sidebar-r {
  grid-area: sd-r;
  /* background: rgba(255, 255, 255, 0.5); */
  padding: 10px;
  border-radius: var(--border-radius);
}

footer {
  grid-area: ft;
  background-color: var(--purple-footer);
  padding: 10px;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 70%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.button-area {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 200px;
}

footer .last-updated {
  margin: auto;
  text-align: center;
  font-family: funnytype;
  font-size: 110%;
}

.logo {
  margin: auto;
  display: block;
  height: 10vh;
  margin-bottom: 2vh;
}

.pfp {
  width: 200px;
  height: 200px;
  border: dashed blue;
  border-radius: 25px;
  display: block;
  margin: auto;
}

.text {
  font-family: funnytype;
  font-size: 120%;
  font-weight: 100;
  color: black;
}

.latteral-pattern {
  background-image: linear-gradient(0deg, transparent 50%, #f7dec6 50%);
  background-size: 32px 32px;
  background-color: var(--purple);
  opacity: 0.85;
}

.ISAT-dialogue {
  position: absolute;
  margin-left: -5px;
  margin-bottom: -5px;
  bottom: 0;
  left: 0;
  width: 101%;
  border-radius: var(--border-radius);
}

.about-image {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
}

.gifs {
  /* padding-top: 30px; */
  /* padding-left: 25px; */
  /* padding-right: 5px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  overflow: hidden;
}

.gifs img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.img1 {
  position: absolute;
  bottom: 50px;
  left: 50px;
}

.img2 {
  position: absolute;
  top: 80;
  left: 350;
}

.img3 {
  position: absolute;
  top: 25;
  right: 25;
  border-radius: 8px;
  border-style: solid;
  border-width: 2px;
  border-color: #0d5fee;
}
