@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
html, body {
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    background: url("xpachter.webp") center / cover no-repeat;
  }

h1 {
    font-size: 75px;
    margin-top: 1%;
    margin-bottom: 0px;
    font-family: "Silkscreen";
    color: white;
}

h1 span {
    background-color: blue;
    box-shadow: 0px 0px 5px black;
}

h2, h3, h4, p, a {
    color: white;
    font-family: "Silkscreen";
    text-shadow: 0px 0px 5px black;
}

h2 span {
    background-color: #214fe2;
}

.center {
    text-align: center;
}

.imgpad {
    margin: 1%;
    width: 40%;
}

nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;

}

nav a {
    margin: 5px;
}

.navi {
    font-family: "Silkscreen";
    color: white;
}

.gallery {
    max-width: 50vw;
    margin: 0 auto;
}

.gallery img {
    width: 33%;
    aspect-ratio: 1/1;
    display: block;
    float: left;
    object-fit: cover;
}

.gallery img:hover {
    transform: rotate(20deg);
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;

  width: 100%;
  height: auto;

  z-index: 999;
  pointer-events: none;
}

.two-column {
    display: flex;
    justify-content: space-around;
    width: 80vw;
    margin: 0 auto;
}

.two-column img {
    max-width: 45%;
    object-fit: cover;
}

.two-column p {
    max-width: 45%;
}

.slideshow {
    display: flex;
    overflow-x: scroll;
    width: 80vw;
    margin: 0 auto;
}

.slideshow img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 40vw;
    display: block;
}

@media (max-width:600px) {
    .slideshow {
        height: 80vw;
        width: auto;
    }

    .gallery {
        max-width: 100%;
    }

    .gallery img {
        width: 50%;
    }

    .two-column {
        width: 90vw;
        flex-direction: column;
    }

    .two-column img {
        max-width: 100%;
    }
}

