<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(../image/bg-pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    min-width: 100%;
}

.body {
    margin-inline: auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 3%;
    height: 80vh;
}

img {
    width: 90%;
}

.btn img {
    width: 100%;
}

.text-center img {
    width: 30%;
}

.btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    cursor: pointer;
}

.btn-list {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.btn-list span {
    margin-top: -1%;
}

.btn-list:hover {
    transform: scale(1.1)
}

.text-center {
    font-size: 2rem;
    color: white;
    font-weight: 600;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-top: -1%;
}

.text-color {
    color: rgb(77, 18, 12);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    width: 100%;
}

.logo img {
    width: 30%;
    height: 80%;
}

.txt-black {
    color: #4e4141;
    ;
}

@media screen and (max-width: 1000px) {
    .text-center {
        font-size: 3vw;
    }
}

@media screen and (max-width: 768px) {
    .btn {
        width: 70%;
    }
    .text-center {
        font-size: 5vw;
    }
}</pre></body></html>