@charset"utf-8";
*{
margin: 0;
padding: 0;
line-height: 1;
box-sizing: border-box;
}
li {
    list-style: none;
    }
    image {
    vertical-align: bottom;
    }
    /* html */
    body {
        background-color: #e9606e;

    }
    /* header */
    .header {
        background:url(../img/goofy-4351832_640.webp)no-repeat center/cover;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 90px;
   }
   .title {
    color: #fff;
    background-color:30 30 30 30;
    text-align: center;
    padding: 40px 60px;
   }
   h1{
    margin-bottom: 12px;
    font-size: 48px;
    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;
    color: #fff;
   }
   .container {
    width: 940px;
    margin: 0 auto 90px;
    text-align: center;
   }
   @media (max-width:500px){
    .container {
    width: 100%;
   }
   .main{
    padding: 0 20px;
   }
   
    }

   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){
    .container ul{
        display: block;}
    }
    
 .container li{
    background-color: #a4f45a;
    padding: 20px;
}
h3{
    font-size: 26px;
    margin-bottom: 20px;
    padding: 8px 24px;
    background-color: #2603f1;
    color: #fff;
}
.container li p{
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
    }
    footer{
    background-color: #580be6;
    color: #fff;
    }
    footer p{
    text-align: center;
    padding: 60px 0;
    }