body{
    font-family: "Times New Roman";
    background-color: #e6e3ec;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.container{
    background:white;
    padding:40px;
    width:550px;
    text-align:center;
    border-radius:15px;
    box-shadow:0px 10px 25px rgba(0, 0, 0, 0.2);
}

.container{
    position: relative;

    background: white;
    width:550px;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}
.theme-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;   
    border: none;           
    font-size: 28px;        
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: #333;               
    transition: transform 0.3s ease;
}

.theme-btn:hover{
    background:#4C5C78;
    transform:scale(1.2);
}
.dark{

    background:#000000;

    color:white;
}
.dark .container{

    background:#2d2c2c;

    color:white;
}
.dark h1{

    color:#FFD369;
}
.dark #quote{

    color:#ECECEC;
}
.dark #author{

    color:#FFD369;
}
.dark .footer{

    color:rgb(136, 9, 9);;
}
.dark button{

    background:#34495E;

    color:white;
}
.dark button:hover{

    background:#4C6A92;
}
button{
    background:#7788a5;
    color:rgb(254, 254, 254);
    border:none;
    padding:12px 20px;
    font-size:14px;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#5b74a2;
    transform:scale(1.05);
}

h1{
    color:#850909;
    font-size:36px;
}

#quote{
    font-size:20px;
    color:#000000;
    font-style:italic;
    margin-top:20px;
}

#author{
    margin-top:20px;
    color:#37156a;
    font-weight:bold;
}

.footer{
    margin-top:25px;
    font-size:18px;
    color:rgb(136, 9, 9);
}