body{
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(244, 244, 244);
    transition: background-color 0.3s ease-in-out;
}

.container{
    text-align:center;
    padding: 20px;
    max-width: 500px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1{
    text-shadow: 0 0 10px #d65932, 0 0 20px #00FF00, 0 0 30px #ed1212;
}

.quote-container{
    margin-bottom: 20px;
}

#quote-text{
    font-size: 24px;
    margin-bottom: 10px;
}

#quote-author{
    font-size: 20px;
    font-style: italic;
    color: rgb(220, 36, 36);
}

.category,.settings{
    margin:20px 0px;
}

#category-select{
    padding: 5px;
    border: 1px solid rgb(51, 51, 51);
    border-radius: 10px;
}

.controls button{
    margin:5px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    background-color: rgb(0, 123, 255);
    color: rgb(255, 255, 255);
    transition: background-color 0.3s ease-in-out;
}

.controls button:hover{
    background-color: rgb(0, 86, 179);
}

.settings{
    display: flex;
    justify-content: space-between;
}

#theme-toggle,
#increase-font, 
#decrease-font{
    margin-left: 5px;
    border-radius: 5px;
}

.dark-mode{
    background-color: rgb(51, 51, 51);
    color:rgb(255, 255, 255);
}
.dark-mode .container{
    background-color: rgb(68, 68, 68);
}

@media (max-width:768px) {
    body{
        margin: 20px;
    }
}

@media (max-width:480px) {
    body{
        margin: 20px;
    }
    #quote-text{
        font-size: 20px;
    }
    #quote-author{
        font-size: 16px;
    }
    .controls button{
        font-size: 12px;
    }
}