h1 {
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.centerbox01 {
    display: flex;
    margin: 0 auto;
    align-items: center;
    width: 150px;
    height: 150px;
    background-color: lightblue;
    background: linear-gradient(to bottom right, rgb(92, 92, 254), rgb(215, 245, 255));
    border-radius: 30px;
    box-shadow:3px 3px black;
    transition: all 0.2s ease-in-out;
}

.centerbox01:hover {
    width: 200px;
    height: 200px;
    border-radius: 50px;
}

.centerbox01 p {
    display: flex;
    text-align: center;
    align-items: center;
}

@media (max-width: 600px) {
    h1 {
        margin-top: 10px;
    }

    .container {
        height: 60vh;
    }
}