* {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 45px;
    text-align: center;
}

h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    text-align: center;
    margin-top: 20px;
}

h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
    text-align: center;
}

.title {
    margin-top: 80px;
}

.w {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.box {
    height: 700px;
    background-color: white;
}

.box-bd ul {
    width: 105%;
}

.box-bd ul li {
    float: left;
    width: 300px;
    height: 400px;
    background-color: white;
    margin-right: 100px;
    margin-top: 100px;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 8px 8px 20px 8px grey;
    transition: ease-in-out all 0.1s;
    transform: scale(1);
}

.box-bd ul li:hover {
    background-color: gainsboro;
    transform: scale(1.1);
}

.box-bd ul li:active {
    background-color: rgb(187, 187, 187);
    transform: scale(1.2);
}

.box-bd ul li img {
    width: 100%;
}

.box-bd ul li p {
    margin: 30px 20px 0 25px;
    font-size: 40px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    color: black;
}