body {
    background-position: top;
    background-color: #392639;
    /*background-image: url("img/bg.png"); 
    background-repeat: no-repeat;*/
    color:#B3A6B3;
    margin-top: 1em;
    margin-left: 1em;
}

.flexBox{
    display:flexbox;
    background-color: #795B79;
    margin-top: 2em;
    margin-right: 1em;
    padding: 1em;
    border: #B3A6B3;
    border-style:solid;
}

.textBox{
    width: 50%;
    margin-right: 10%;
    height: 3em;
    border: none;   
    border-radius: 25px;
    font-size: medium;
    text-align: center;
}

button{
    width: 15%;
    height: 3em;
    border-style: none;
    background-color:#392639;
    color:#B3A6B3;
    border-radius: 25px;
    text-align: center;
}

button:hover{
    background-color:#795B79;
    transition: 0.3s;
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #392639;
    color: #B3A6B3;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    width: 60px;
}

#scrollToTopBtn:hover {
    background-color:#B3A6B3;
}


.footer {
    margin-top: 15px;
    margin-bottom: 15px;
    /*display: flex;*/
    text-align: center;
    justify-content: center;
}

a, a:link, a:hover {
    color:#B3A6B3;
    text-decoration: none;
}

.reset-button {
    width: 15%;
    height: 3em;
    border-style: none;
    background-color: #392639;
    color: #B3A6B3;
    border-radius: 25px;
    text-align: center;
    margin-left: 10px;
}

.reset-button:hover {
    background-color: #795B79;
    transition: 0.8s;
}

.watchlist-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.watchlist-poster {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.watchlist-item p {
    flex-grow: 1;
    margin: 0;
}

.remove-button {
    background-color: #392639;
    color: #B3A6B3;
    border: none;
    border-radius: 25px;
    padding: 5px 10px;
    cursor: pointer;
}

.remove-button:hover {
    background-color: #795B79;
    transition: 0.3s;
}

