I need help aligning three buttons in the same row and centered vertically. I want them to be aligned in the same way as the text "Select your attack:" Please advise on how to achieve this alignment.
.prompt_user_to_choose {
margin: 0;
display: flex;
justify-content: center;
min-height: 10vh;
align-items: center;
text-align: center;
font-size: 25px;
}
.results {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 10vh;
text-align: center;
font-size: 25px;
}
.Rock {
width: 70px;
height: 70px;
padding: 10px 16px;
border-radius: 35px;
font-size: 14px;
text-align: center;
font-weight: bold;
background-color: rgb(255, 60, 60);
}
.Paper {
width: 70px;
height: 70px;
padding: 10px 16px;
border-radius: 35px;
font-size: 14px;
text-align: center;
font-weight: bold;
background-color: rgb(105, 255, 105);
}
.Scissors {
width: 90px;
height: 70px;
padding: 10px 16px;
border-radius: 35px;
font-size: 14px;
font-weight: bold;
text-align: center;
background-color: rgb(36, 186, 255);
}
This is the current layout: https://i.sstatic.net/RU4r8.png
This is the desired layout: https://i.sstatic.net/GGQsE.png