﻿html{
	overflow-y: scroll;
}
.navbar {
    background-color: #343a40; /* 深灰色 */
    width: 100%;
}

.navbar .nav-link, .navbar .navbar-brand {
    color: #ffffff; /* 白色 */
}

.navbar .nav-link:hover {
    color: #17a2b8; /* 柔和的藍色 */
}

.jumbotron {
    background-color: #f8f9fa; /* 非常柔和的灰色背景 */
    color: #343a40; /* 深灰色文字 */
    border-radius: 0.3rem;
    padding: 2rem 2rem;
    min-height:550px;
}

body {
    background-color: #e9ecef; /* 外部背景色 */
    height:100%;
}

.footer {
    background-color: #343a40; /* 深灰色 */
    color: #ffffff; /* 白色 */
}

.footer a {
    color: #17a2b8; /* 柔和的藍色 */
    text-decoration: none; /* 移除底線 */
}

.footer a:hover {
    color: #ffffff; /* 白色 */
    text-decoration: none; /* 移除底線 */
}

a {
    text-decoration: none; /* 移除所有超連結的預設底線 */
}

a:hover {
    text-decoration: underline; /* 滑鼠懸停時顯示底線 */
}

.indented {
    padding-left: 1.5rem; /* 控制縮排的距離 */
}

.caption-top {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}
