
/*
   Valeries Art website
   index.css
   (c) Copyright 2023,2024,2025
*/

.tabs {
  overflow: hidden;
  border: none;
  outline: none;
  background-color: #FFF;
  position:sticky;
  top: 0;
}

.tabs button {
  float: left;
  margin-right: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.3s;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.select {
    display: block !important;
    font-size: 3vw;
}

.groups {
    padding: 0px;
    border: none;
    border-radius: 10px;
    border-top-left-radius: 0px;
    background-color: #FFF;
}

.group div {
    padding: 0px;
    border: none;
    border-radius: 10px;
    border-top-left-radius: 0px;
}

.group ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  margin-block: 0px;
  background-color: inherit;
  padding: 0px;
  border: none;
  border-radius: 10px;
  border-top-left-radius: 0px;
}

.active {
    background-color: #7DB4C5;
}

.main {
  background-color: #7DB4C5;
  border: none;
  outline: none;
}

body {
  font-family: sans-serif;
}

h1 {
  text-align: center;
  font-size: 5vw;
}

h2 {
  text-align: center;
  font-size: 2vw;
}

ul li::marker {
    color: #7DB4C5;
}

li:last-child {
  flex-grow: 10;
}


li {
  height: 40vh;
  flex-grow: 1;
  margin: 5vmin;
}

img {
  max-height: 100%;
  min-width: 100%;
  object-fit: contain;
  vertical-align: bottom;
  border-radius: 1vmin;
  padding:10px;
}

/*
@media (max-aspect-ratio: 1/1) {
  li {
    height: 80vh;
  }
}
*/

@media (max-width: 1500px) {
  html {
    width: 1500px;
  }
}

/*
@media (max-aspect-ratio: 1/1) and (max-width: 600px) {
  ul {
    flex-direction: row;
  }

  li {
    height: auto;
    width: 100%;
  }

  img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
*/
