/* 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%;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.fa {
    width: 110px;
    height: 110px;
    background: #f8f9fa;
    color: #080808;
    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: #080808;
    color: #f8f9fa;
}

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

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

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

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

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

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

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

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

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

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

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

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

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