/* General mode styles */
html,
body {
    font-family: "Times New Roman", Times, serif !important;
    font-size: 1rem;
    height: 100%;
    width: 100%;
}

.site-main {
    min-height: 93%;
    width: 100%;
}

.fa {
    width: 110px;
    height: 110px;
    background: #fff;
    color: #262626;
    text-align: center;
    line-height: 120px !important;
    font-size: 3.75rem !important;
}

.fa.fa1 {
    position: absolute;
    top: -1px;
    left: -1px;
}

.quote-box {
    padding: 120px 40px 15px;
    position: relative;
    width: 90vw;
    border-radius: 1rem;
}

.quote-icon {
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.site-footer {
    bottom: 0;
    font-size: .8rem;
}

.site-footer,
.site-footer * {
    text-decoration: none;
}


.theme-toggle-btn {
	width: 50px;
	height:50px;
	border-radius: 100%;
    position: fixed;
    top: 1rem;
    right: 1rem;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
	z-index: 999;
}


/* Dark mode styles */
[data-bs-theme="dark"] html,
[data-bs-theme="dark"] body {
    background-color: #121212;
    color: #dee2e6;
}

[data-bs-theme="dark"] .quote-box {
    background-color: #ffffff;
    box-shadow: 0px 0px 100px 0px rgba(217, 217, 217, .3);
    color: #212529;
}

[data-bs-theme="dark"] .fa {
    background: #121212;
    color: #ffffff;
}

[data-bs-theme="dark"] .blockquote-footer {
    color: #6c757d !important;
}

[data-bs-theme="dark"] .site-footer,
[data-bs-theme="dark"] .site-footer * {
    color: #6c757d;
}

[data-bs-theme="dark"] .theme-toggle-btn {
	background-color: #ffffff;
    color: #121212;
}

/* Light mode styles */
[data-bs-theme="light"] html,
[data-bs-theme="light"] body {
	background-color: #f8f9fa;
    color: #212529;
}

[data-bs-theme="light"] .quote-box {
    background-color: #262626;
	box-shadow: 0px 0px 100px 0px rgba(50, 50, 50, .3);
    color: #dfe6e9;
}

[data-bs-theme="light"] .fa {
    background: #ffffff;
    color: #262626;
}

[data-bs-theme="light"] .blockquote-footer {
    color: #646464 !important;
}

[data-bs-theme="light"] .site-footer,
[data-bs-theme="light"] .site-footer * {
    color: #777777;
}

[data-bs-theme="light"] .theme-toggle-btn {
    background-color: #121212;
    color: #dee2e6;
}

@media(min-width:768px) {
    html,
    body {
        font-size: 1.2rem;
    }
}

@media(min-width:992px) {
    .quote-box {
        width: 50vw;
    }
}