h2 {
    text-align: center;
    transition: all 0.2s ease;
}

form {
    text-align: center;
    margin-top: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height:100%;
    flex-wrap: wrap;
    align-content: center;
    padding: 10px;
    min-height:70vh;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightblue;
    width: 150px;
    height: 150px;
    border-radius: 30px;
    box-shadow: 3px 3px black;
    background: linear-gradient(to bottom right, rgb(212, 243, 254), rgb(172, 172, 247));
    transition: all 0.3s ease;
}

.box:hover{
    width: 200px;
    height: 200px;
    border-radius: 50px;
    font-size: 25px;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 50vh;
    }

    .box {
        width: 80%;
        height: 100px;
        font-size: 18px;
    }

    .box:hover {
        width: 90%;
        height: 120px;
        font-size: 20px;
    }

    h2 {
        font-size: 20px;
    }
    form input{
        width: 80%;
        font-size: 16px;
        height: 60px;
    }

    .submitbtn {
        width: 25%;
        margin-top: 20px;
        font-size: 16px;
        padding: 10px;
    }
}