/* global style */
html {
    font-size: 18px;
    font-weight: bold;
}

.column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/* body */
.body {
    justify-content: space-between;
}

/* style header */
.header {
    justify-content: center;
    align-items: center;
    height: 20%;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1rem;
}

/* style block 1 */
.block1 {
    justify-content: center;
    align-items: center;
    padding: 0px 0;
    flex: 1;
    gap: 5%;
}

.resultBoard {
    align-items: center;
    gap: 10px;
}

.selectionBoard {
    justify-content: space-between;
    gap: 100px;
}

.userBoard, .comBoard {
    align-items: center;
    justify-content: space-between;
}

.fa-solid, .userChoiceIcon, .comChoiceIcon, .userSelect{
    font-size: 6rem;
}

.userSelections {
    gap: 20px;
}

/* footer */
.footer {
    justify-content: center;
    align-items: center;
    height: 5%;
}