
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.parent-div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 19%;
    
}
#boy > img {
    /* float: left; */
    margin-left: 10%;
}

#girl >img{
    /* float: right; */
    margin-left: 10%;

}

#buttons{
    display: inline-flex;
    position: absolute;
    left: 20%;
    gap: 5%;
}

#buttons2{
    display: inline-flex;
    position: absolute;
    left: 55%;
    gap: 5%;
}

#btn1{
    height: 50px;
    width: 200px;
    border-radius: 10px;
    background-color: aqua;
    border: 2px solid black;
    box-shadow: 2px 2px 4px 3px rgb(199, 198, 198);
    transition-duration: 2s;
    cursor: pointer;
}
#btn1 > p{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    font-weight: 900;
    font-size: x-large;
}

#btn1:hover{
    transform: scale(0.9);
}

#btn2{
    height: 50px;
    width: 200px;
    border-radius: 10px;
    background-color: aqua;
    border: 2px solid black;
    box-shadow: 2px 2px 4px 3px rgb(199, 198, 198);
    transition-duration: 2s;
    cursor: pointer;
}
#btn2 > p{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    font-weight: 900;
    font-size: x-large;
}
#btn2:hover{
    transform: scale(0.9);
}


.btn1{
    height: 50px;
    width: 200px;
    border-radius: 10px;
    background-color: aqua;
    border: 2px solid black;
    box-shadow: 2px 2px 4px 3px rgb(199, 198, 198);
    transition-duration: 2s;
    cursor: pointer;
}
.btn1 > p{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    font-weight: 900;
    font-size: x-large;
}
.btn1:hover{
    transform: scale(0.9);
}

.btn2{
    height: 50px;
    width: 200px;
    border-radius: 10px;
    background-color: aqua;
    border: 2px solid black;
    box-shadow: 2px 2px 4px 3px rgb(199, 198, 198);
    transition-duration: 2s;
    cursor: pointer;
}
.btn2 > p{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    font-weight: 900;
    font-size: x-large;
}
.btn2:hover{
    transform: scale(0.9);
}