*{
    margin: 0px;
    padding: 0px;
}

.container{
    height: 80vh;
    background-color: burlywood;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.box1{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: brown;
    border: 2px solid black;
    border-radius: 50px;
    height: 200px;
    width: 200px;
    transition: all 1s ease-in-out;
}

.box1:hover{
    transform: rotate(45deg);
}

.box2{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: brown;
    border: 2px solid black;
    border-radius: 50px;
    height: 200px;
    width: 200px;
    transition: all 1s ease-in-out;
}

.box2:hover{
    transform: skew(40deg);
}

.box3{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: brown;
    border: 2px solid black;
    border-radius: 50px;
    height: 200px;
    width: 200px;
    transition: all 1s ease-in-out;
}

.box3:hover{
    transform: scale(1.2);
}

.box4{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: brown;
    border: 2px solid black;
    border-radius: 50px;
    height: 200px;
    width: 200px;
    transition: all 1s ease-in-out;
}

.box4:hover{
    transform: translateX(123px);
}

.box5{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: brown;
    border: 2px solid black;
    border-radius: 50px;
    height: 200px;
    width: 200px;
    transition: all 1s ease-in-out;
}

.box5:hover{
    transform: translateY(123px);
}


.box6{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: brown;
    border: 2px solid black;
    border-radius: 50px;
    height: 200px;
    width: 200px;
    transition: all 1s ease-in-out;
}

.box6:hover{
    transform: translate(123px,123px);
}
