body{
    color: white;
    background-color: rgb(0, 32, 59);
    text-align: center;
}
#pseudobody{
    height: 50vh;
    padding: 5vh;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
}

#textcontainer{
    border-radius: 15px;
    /* background: white; */
    height: auto;
    padding: 5%;
    width: min(90%, 600px);
    text-align: center;
    margin: auto;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#selectedphoto{
    height: 200px;
    width: 200px;
    background-color: transparent;
}
.glass{
    backdrop-filter: blur(10px);
    background-color: transparent;
    outline: 1px solid rgba(255,255,255,0.2);

}
input[type='text']{
    height: auto;
}
@keyframes bganim {
    0% { background-position: 0 0; }
    100% { background-position: 10vh 10vh; }
}

.grid{
    background-color: #000b52;
    background-image:
        linear-gradient(#004463 .1em, transparent .1em),
        linear-gradient(90deg, #004463 .1em, transparent .1em);
    background-size: 10vh 10vh;
    animation: bganim 10s linear infinite;
    background-repeat: repeat;
}

.colour{
    background-color: #004463;
}

.gradient{
    background-image: linear-gradient(blue,green);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.invisible{
    display: none;
}


.item:nth-child(1) {
  flex: 1;
  height: 75%;
}

.item:nth-child(2) {
  flex: 1;
  height: 75%;
}

@media (min-width: 1024px) {
  body{
    height: 100vh;
  }
  .flex {
    display: flex;
    flex-direction: row;
    gap: 2%;
    height: 100vh;
  }

}

button {
    border-radius: 15px;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    background-color: #014add;
    color: #cbdfee;
    transition: 0.3s ease;
}

button:hover {
    background-color: #7700ff;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(2px);
}

input[type='text']{
    border-radius: 15px;
    border: none;
}

input[type="color"] {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type="color"]::-webkit-color-swatch,
input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 50%;
}
input[type="file"]::file-selector-button {
  background-color: #014add;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}
