header {
    width: 100%;
    height: 48px;
    background: #e8dcef;
}

header img {
    width: 120px;
    height: 100%;
    user-select: none;
    font-size: 23px;
    font-weight: 900;
}

main .banner {
    width: 100%;
    height: 440px;
    background-color: #d4b8e4;
    color: #333;
    font-weight: 100;
    font-family: serif;
    background-image: url(../image/banner.png);
    background-size: auto 100%;
    background-repeat: repeat-x;
}

main .banner article {
    width: 80%;
    text-align: center;
    padding-top: 60px;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

main .banner article div {
    width: 100px;
    height: 110px;
    margin-left: 46.3%;
    transform: translate(-52%, 0);
    background-image: url(../image/ubeyin.png);
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 800px) {
    main .banner article div {
        margin-left: 48.8%;
    }
}

main .banner article button {
    background-color: #9769b3;
    color: #fff;
    padding: 5px 16px;
    margin-top: 25px;
}

@media screen and (min-width: 800px) {
    main .banner article p {
        font-size: 1.2rem;
    }
}

main .container {
    width: 100%;
    padding: 20px;
    padding-top: 45px;
    text-align: center;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

main .container .col {
    margin-top: 50px;
}

main .container .col h2 {
    text-align: center;
    margin: 19px 0;
    margin-top: -30px;
}

main .container .col .image {
    width: 100%;
    height: 248px;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 400px;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

main .container .col:nth-child(1) .image {
    background-image: url(../image/image1.jpg);
}

main .container .col:nth-child(2) .image {
    background-image: url(../image/image2.jpg);
    margin-bottom: 75px;
    margin-left: 52%;
    height: 170px;
    max-width: 300px;
}

footer {
    width: 100%;
    padding: 25px;
    text-align: center;
    background-color: #9769b3;
    color: #fff;
    margin-top: 50px;
}

footer a,footer a:hover {
    color: inherit;
}