﻿/* 頁面基礎結構 */
.container {
    width: 1200px;
    margin: 100px auto;
}

.items {
    width: 100%;
    display: flex;
}

.item {
    height: 300px;
    width: 1200px;
    margin: 20px;
    border-radius: 20px;
    text-align: center;
}

    .item .content {
        height: 300px;
        width: 100%;
    }

    .item img {
        margin: 20px 0;
    }

    .item h1 {
        color: white;
    }

.footer {
    position: fixed;
    left: 5px;
    bottom: 5px;
}

/* 處理原本 HTML 中的 Inline Styles */
.header-wrapper {
    height: 115px;
}

.logo-container {
    display: inline-block;
}

.title-container {
    display: inline-block;
    margin-left: 30px;
    font-family: 'Trebuchet MS';
}

.title-text {
    font-size: 48pt;
}

.clearfix {
    clear: both;
}

.item-link {
    text-decoration: none;
}

.icon-small {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.copyright-text {
    font-size: 14pt;
}

/* 針對不同背景顏色的 Item */
.bg-blue {
    background-color: #2DA4E7;
}

.bg-green {
    background-color: #7BB23F;
}

.bg-yellow {
    background-color: #FFC000;
}
