* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fcfcfc;
}

.header {
    height: 90px;
    width: 100%;
    background-color: #6495ed;
    padding: 5px 5px 5px 5px;
    box-shadow: 8px 12px 8px #888888;
    display: flex;
}

.logo h2 {
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    color: aliceblue;
}

.syll {
    margin: 1rem auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.syll h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.content {
    margin-top: 2%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.7rem 2.2rem;
    padding: 10px;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 140px;
    height: 140px;
    border-radius: 19px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: #285ec2;
}
.box:hover{
    transform: scale(1.1);


}

.box img {
    margin-top: 1.3rem;
    width: 50px;
    height: 50px;
}

.box button {
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.mid {
    height: 100%;
    width: 100%;
}

@media (max-width: 600px) {
    .logo h2 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 25px;
        border-radius: 10px;
    }

    .content {
        flex-direction: row;
          margin-bottom: 10px;
    }

    .mid {
        height: 100%;
        width: 100%;
    }

}