/* Scrollbar */
::-webkit-scrollbar {
    width: 15px;
  }

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 15px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

html{
    width: 100%;
    height: 100%;
}

body{
    background-color: #EDD8C6;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* LOGIN PAGE */

#loginBtnContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#loginInputContainer{
    margin-top: 100px;
    display: flex;
    gap: 15px;
}

#loginInputContainer input{
    padding: 5px;
}

/* Input PAGE */

/* Styles for the banner */
.banner {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.5s ease;
    z-index: 1000;
}

.banner img {
    height: 250px;
}

.arrow {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 20px;
    background-color: grey;
    text-align: center;
    color: white;
}

#title {
    width: 100%;
    font-size: 60px;
    text-align: center;
    font-family: 'Indie Flower', cursive;
}

.itemContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
}

#imgContainer{
    border: 3px black solid;
    border-radius: 15px;
}

#imgContainer img{
    padding: 10px;
    width: 150px;
}

#noteContainer{
    width: 70%;
    height: 60%;
    border: 3px black solid;
    border-radius: 15px;
    margin-top: 25px;
    font-size: 30px;
    overflow-y: auto;
}

#noteContainer div {
    margin: 20px 20px 20px 20px;
    padding: 10px;
    border: 1px black solid;
    border-radius: 15px;
    background-color: #eeeeee;
}

button{
    height: 30px;
    width: 150px;
    border-radius: 15px;
}

button:hover{
    cursor: pointer;
}

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

input{
    border: black 2px solid;
    width: 150px;
}

@media only screen and (max-width: 600px) {
    #title{
        font-size: 40px;
    }

    #imgContainer{
        display: none;
    }

    #noteContainer{
        width: 90%;
    }

    #noteContainer{
        font-size: 20px;
    }
}
