:root {
    --lilac: rgb(194, 168, 255);
    --background-black: rgb(17, 17, 17);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', sans-serif;
}

header {
    min-height: 25vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), url(images/banner.jpg) center/
    cover no-repeat ;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.headerMain {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), url(images/20221030_200036.jpg) center/
    cover no-repeat ;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.banner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.galleryContainer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 5px;
    max-width: 1300px;
    margin: 0 auto; /* horizontal center */
}

@media screen and (max-width: 800px) {
  .gallery { grid-template-columns: auto auto auto auto; }
}

@media screen and (max-width: 400px) {
  .gallery { grid-template-columns: auto auto auto auto; }
}

.galleryContainer img{
  width: 400px;
  height: 100%;
  object-fit: cover; /* fill | contain | cover | scale-down */
  border: 1px solid #cdcdcd;
  cursor: pointer;
}

.galleryContainer a{
  display: inherit;
  width: 400px;
  height: 100%;
  object-fit: cover; /* fill | contain | cover | scale-down */
  border: 1px solid #cdcdcd;
  cursor: pointer;
}

.galleryContainer img:hover {
  transform: scale(1.075);
  transition: 0.2s ease-in;
}

.galleryContainer { overflow-x: hidden; }
.galleryContainer img { transition: all 0.3s; } 

.postContainer {
    display: flex;
    flex-direction: row-reverse;
    padding: 10px 20%;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 21, 21, 0.4);
    border-radius: 10px;
}

.postContainer p{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    width: clamp(200px, 50%, 1000px);
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: center;

}

.postContainer img{
    align-items: center;
    justify-content: center;
    display: flex;
    aspect-ratio: 3/4;
    width: clamp(150px, 300px, 600px);
    height: clamp(200px, 400px, 800px);
    border-radius: 10px;
}

#output{
    text-align: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
}

.small_button {
    display: inline-block;
    justify-content: center;
    text-decoration: none;
    height: 35px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    background: var(--lilac);
    color: white;
    margin: 0px 0px 0px 0px;
}

label {
    color: var(--lilac)
}

input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    background-color: var(--background-black);
    color: white;
    outline: none;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

h1 {
    color: var(--lilac);
    font-size: 26px;
    margin: 10px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

h2 {
    color: white;
    font-size: 22px;
    text-align: center;
    margin: 10px 20px;
}

body {
    color: white;
    background-color: var(--background-black);
}

img {
    width: 100%;
    display: block;
}

footer {
  text-align: center;
  padding: 8px;
  background-color: var(--background-black);
  color: rgba(255, 255, 255, 0.479);
  font-size: 10px;
}

.navbar{
    background-color: rgba(20, 20, 20, 0.493);
    height:  80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar_title {
    background-color: var(--lilac);
    background-image: linear-gradient(to top, rgb(34, 27, 51) 10%, rgb(255, 251, 201) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 42px;
}

.navbar_menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar_item {
    height: 80px;
}

.navbar_links {
    color: var(--lilac);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 16px;
    height: 100%;
}

.navbar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    background: var(--lilac);
    color: white;
}

.button:hover {
    color: var(--lilac);
    background-color: rgb(61, 61, 61);
    transition: all 0.5s ease;
}

.navbar_links:hover {
    color: white;
    transition: all 0.5s ease;
}

@media screen and (max-width: 960px) {
    .navbar_container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
    }

    .navbar_menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: rgba(20, 20, 20, 0.493);
    }

    .navbar_menu.active {
    background: rgba(20, 20, 20, 0.493);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 24px;
    }

    #navbar_title {
    padding-left: 25px;
    font-size: 25px;
    }

    .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.25s ease-in-out;
    background: white;
    }

    .navbar_item {
    width: 100%;
    }

    .navbar_links {
    text-align: center;
    padding: 30px;
    width: 100%;
    display: table;
    }

    #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
    }

    .navbar_btn {
    padding-bottom: 30px;
    }

    .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
    }

    .navbar_toggle .bar {
    display: block;
    cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    }
}