@charset "utf-8";

.container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

body{
    color: white;
    
    background-image: url("../img/bworld.jpg");
    background-repeat:repeat;
    background-position:0% 0%;
    background-size:400%;
}

p{ 
    text-align: left;
    margin: 40px 0;
}

h1{
    opacity: 0.8;
    
    flex-basis: 90%;
    text-align: center;
    margin: 40px 0;
}

.con_left{
    flex-basis: 100%;
    margin: 0;
}

.con_left img{
    width: 100%;
    height: auto;
}

.con_rigft{
    opacity: 0.7;

    background-color:rgba(0, 0, 0, 0.4);
    flex-basis: 86%;
    margin: 5px 0;
    border-radius: 30px;
    padding: 2% ;
}

/* tablet */
@media screen and (min-width: 520px) {
    body{background-size:300%;}
}

/* pc */
@media screen and (min-width: 920px) {
    body{background-size:160%;}
    p{text-align: center;}

    .con_left{
        flex-basis: 65%;
    }
    .con_rigft{
        flex-basis: 65%;
        text-align: center;
        padding: 0;
    }
}
 

@media screen and (min-width: 1281px){
    body{background-size:120%;}
}
