body{
    color: white;
    background-color: rgb(0, 32, 59);
    text-align: center;
}
#pseudobody{
    background-color: white;
    color: black;
    display: grid;
    place-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}
.flipbook{
    width: 60vw;
    height: 70vh;
}
.flipbook .hard{
    color: #fff;
    font-weight: bold;
    border: none;
}
.flipbook .hard p{
    font-style: italic;
    font-weight: lighter;
    opacity: 0.7;
    font-size: 15px;
}
.flipbook .page{
    background-color: red;
}

#textcontainer{
    border-radius: 15px;
    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;
}
input[type='text']{
    height: auto;
}

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

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

button {
    border-radius: 15px;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    background-color: #014add;
    color: #cbdfee;
    transition: 0.2s 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;
}


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

}
