@media screen and (max-width: 768px){
    
.container{
    width: 100%;
    max-width: 1024px;
    background-image: url(image/bgimage.jpg);
    margin: 0 auto;
}

.header{
    width: 100%;
    background-color: #390;
}


.header h1{
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.title{
    text-align: center;
}

.title img{
    width: 80%;
    max-width: 800px;
}

.overview{
    font-size: 20px;
    margin: 0 auto;
    color: #003;
    width: 80%;
    font-weight: bolder;
}

.about{
    color: #003;
    padding: 10px;
    margin: 10px;
    background-color:rgba(255,255,255,0.8);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.detail{
    background-color:rgba(255,204,153,0.8);
    padding: 10px;
    margin: 0 10%;
    border: 5px solid #f60;
    color: #003;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
    
}