@charset "utf-8";
* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    min-height: 100%;
    background: #2e87d7;
    font-family: Arial, Verdana, "Microsoft JhengHei", "微軟正黑體", sans-serif
}

.home {
    width: min(100%, 1000px);
    margin: 0 auto;
    color: #fff
}

.home-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: url(../Images/index.jpg) center/cover no-repeat
}

.home-logo {
    position: absolute;
    top: 0;
    left: 30%;
    width: 33.1%;
    max-width: 331px
}

.home-logo img {
    display: block;
    width: 100%;
    height: auto
}

.enter {
    position: absolute;
    left: 30%;
    bottom: 7%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 50px;
    padding: 0 24px;
    border-radius: 4px;
    background: rgba(23, 117, 169, .86);
    border: 1px solid rgba(255, 255, 255, .75);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
    transition: .2s ease
}

.enter:hover, .enter:focus-visible {
    background: #6f8763;
    outline: none
}

.home-info {
    text-align: center;
    padding: 10px 14px 16px;
    font-size: 13px;
    line-height: 1.8
}

.home-info a {
    color: #fff;
    text-decoration: none
}

.home-info a:hover {
    text-decoration: underline
}

@media (max-width: 600px) {
    .home-logo {
        left: 22%;
        width: 46%
    }
    .enter {
        left: 50%;
        transform: translateX(-50%);
        bottom: 4%;
        min-width: 132px;
        height: 40px;
        font-size: 20px;
    }

    .home-info {
        font-size: 18px;
    }
}
