@import url('https://fonts.googleapis.com/css2?family=Just+Me+Again+Down+Here&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

body {
  background-color: #FEF8EF;
  color: #4D3447;
  width: 100vw;
  height: 120vh;
}

input {
    background-color: transparent;
    border: none;
    outline: none;
    color: #FEF8EF;
    font-family: "Onest", sans-serif;
    font-size: 0.7em;
}

.title-input {
    display: none;
    color: #4D3447;
    text-align: center;
    padding: 2em 0em 1em;
}

.page-title {
    text-align: center;
}

.added-img{
    width: 100%;
}

button {
    background-color: #DD9AC2;
    opacity: 50%;
    color: #FEF8EF;
    padding: 0.5em 2em;
    border-radius: 18px;
    border-color: transparent;
}

button:hover {
    opacity: 100%;
    transition: 0.1s;
}

.page-title, .instructor, .choice-title {
    font-family: "Just Me Again Down Here", cursive;
}

.page-title{
    margin-bottom: 1vw;
}

.color-opts {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 1em;
    gap: 0.1em;
}

.note-choices {
    font-family: "Onest", sans-serif;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    position: fixed;
    top: 0;
    padding: 7vw;
    align-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.main-container:not(.note) {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10vw 0vw;
    font-weight: 400;
    font-size: 3em;
    width: 100%;
}

.instructor {
    padding: 0em 5em;
    text-align: center;
    color: #4D344760;
    line-height: 1em;
    display: block;
}

.note-choices {
    display: none;
}

.choice-title {
    text-align: center;
    color:#FEF8EF
}

.line {
    background-color: #FEF8EF;
    height: 1px;
    width: 80%
}

.quotes {
    width: 18%;
}

.quote-text {
    text-align: center;
}

.quote2 {
    display: flex;
    justify-content: flex-end;
}

.templates {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0em 1em;
    padding: 0vw 2vw;
}

.template {
    background-color: #DD9AC2;
    align-content: center;
    border-radius: 6px;
    width: 15vw;
    height: 30vh;
    padding: 1em;
    font-family: "Onest", sans-serif;
    font-size: calc(0.1em + 1vw);
    color: #FEF8EF;
}

.template:hover {
    transform: scale(105%);
    transition: 0.5s;
}

.note-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em;
    padding: 0vw 28vw;
}

.note{
    align-content: center;
    background-color: #DD9AC2;
    border-radius: 6px;
    width: 10vw;
    height: 10vw;
    padding: 1vw;
    font-family: "Onest", sans-serif;
    font-size: calc(0.005em + 1vw);
    color: #FEF8EF;    
}

.note-title {
    margin: 1em 0em;
}

.note:hover {
    transform: translateY(-8px);
    transition: 0.5s;
}

#add-button, #ss-button {
    display: none;
    position: fixed;
    width:5vw;
    height: 5vw;
    bottom: 1vw;
}

#ss-button{
    right: 6vw;
}

#add-button{
    right: 0.5vw;
}

.picture-cnt {
    position: fixed;
    right: 1em;
    bottom: 1em;
}

.edit-note-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left:0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1em 0em 0em;
    gap: 0.5em;
}

.edit-title {
    font-family: "Just Me Again Down Here", cursive;
    text-align: center;
    color:#FEF8EF; 
    font-size: 3em;
}

.note-editor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 3em;
    width: 100%;
    gap: 0.5em;
}

.note-edited {
    background-color: #DD9AC2;
    border-radius: 6px;
    width: 20vw;
    height: 20vw;
    padding: 1em;
    font-family: "Onest", sans-serif;
    font-size: calc(0.2em + 1vw);
    color: #FEF8EF;    
}