*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


.container{
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

/*************************Content*************************/
.content {
    width: 100%;
    height: auto;
    background: #fff;
}
.content-heading { 
    font-size: 30px;
    color: #333;
    text-align: center;
    margin-top: 40px;
}
/* .content-heading h1{ 
    font-size: 30px;
    color: #333;
    text-align: center;
} */


.content-teams{
    width: 100%;
    height: auto;
}
   
.content-teams-grid{
    text-align: center;
    display: grid;
    grid-gap: 1rem;
}
.content-teams-items img {
    max-width: 100%;
    
}
.content-teams-item span {
    font-size: 20px;
    padding: 1rem;
}


.btn-1{
    color: white;
    background: #252525;
    border: 1px #000000 solid;
    box-shadow: inset 0 1px 0 #1b2433;
    height: 50px;
    width: 300px;
    border-radius: 10px;
    font-size: 18px;
    justify-self: center;
}

.btn-1:hover {
    opacity: 0.8;
  }
  
.btn-1:active {
    box-shadow: inset 0 2px 5px #010205;  
  }



/* ************************** โทรศัพท์ *************************** */
@media only screen and (max-width:480px){
    .content-teams{
        margin-top: 10px;
    }

    .content-teams-items  {
        width: 15%;
    }
    .content-teams-item span {
        font-size: 16px;
        padding: 1rem;
    }
    .content-teams-items h2 {
        font-size: 25px;
        margin: 1rem;
    }
    .content-heading{
        font-size: 20px;
        text-align: center;
        margin: 1.5rem;
    }
    .content-teams-grid{
        justify-items: center;
    }

    .btn-1{
        color: white;
        background: #252525;
        border: 1px #000000 solid;
        box-shadow: inset 0 1px 0 #1b2433;
        height: 50px;
        width: 300px;
        border-radius: 10px;
        font-size: 18px;
        justify-self: center;
    }
    .content-heading h1{ 
    font-size: 25px;
    color: #333;
    text-align: center;
    }
}


