@charset "UTF-8"
/* reset */
* {
margin: 0;
padding: 0;
line-height: 1;
box-sizing: border-box;
}
li{
    list-style: none;
}
img{
    vertical-align: bottom;
}
/* html */
body{
    background-color: #fff;
}
/* header */
.header{
    background: url(../img/fish.jpg) no-repeat center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: 90px;
    
}
.title{
    background-color: rgba(105, 198, 190, 0.721);
    text-align: center;
    padding: 40px 60px;
    color: #151515;
}
h1{
    margin-bottom: 12px;
    font-size:40px;
    font-weight: 700;
}
.title p{
font-size: 18px;
font-weight: 500;  
}
/* main */
.main > p {
    text-align: center;
font-size: 24px;
margin-bottom: 90px;
line-height: 1.4;
}
.container{
width: 940px;
margin: 0 auto 90px;
text-align: center;
}
@media (max-width:500px){
.container{
width: 100%;
 }
} 
    

h2{
font-size: 36px;
font-weight: 300;
margin-bottom: 32px;
color: #fff;
}
.container ul{
    display: flex;
    justify-content: center;
    gap: 32px;
}
@media (max-width:500px){
 .main{
    padding: 0 20px;
 }
}
.container li{
    background-color: blue;
    padding: 20px;
  box-shadow: none;
}
h3{
    font-size: 26px;
    margin-bottom: 20px;
   padding: 6px 24px;
background-color: rgb(20, 192, 163);
}
.container li p {
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
}
/* footer */
footer{
background-color:#f1f5f4 ;
color:#0d0d0d ;
}
.footer p{
text-align: center;
padding: 60px 0;
}