*{
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-variant: small-caps;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: rgb(216, 213, 213);
}
h1{
    margin: 10px;
    width: 100%;
    height: 10vh;
    color: black;
}
.main{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container{
    border-top: 2px solid black;
    border-right: 2px solid black;
    box-shadow: 5px 5px 5px 0px black;
    background-color: white;
}
.child{
    margin: 20px;
    display: flex;
    column-gap: 15px;
}
.child img{
    width: 150px;
    display: block;
    transition: all 0.3s linear;
}

.child img:hover{
    transform: scale(2);
}