@charset "utf-8";
.banner {
    position: relative;
}

.banner .bannerText h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

.banner .bannerText {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    text-align: center;
}

.banner .bannerText h3 {
    color: #fff;
    margin-top: 10px;
    font-family: "testfont";
    font-size: 24px;
}
@media only screen and (max-width:768px){
    .banner .bannerText h2 {
        font-size: 30px;
    }

    .banner .bannerText h3 {
        font-size: 20px;
    }
}