/* select page customization*/

.contentForm#select{
    display: grid;
    grid-template-rows: 1fr;
    grid-auto-flow: row;
    grid-row: 1/-1;
    grid-column: 1/-1;
    width: 100%;
    height: 100%;
    color: #232323;
    place-items: center;
}
.contentForm#select .section{
    width: 80%;
    height: 70%;
    background-color: #fefefe;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: grid;
    place-items: center;
    grid-auto-flow: row;
    border-radius: 12px;
    word-break: keep-all;
    text-align: center;
}
.contentForm#select .section #options{
    display: grid;
    grid-auto-flow: column;
}
.contentForm#select .section #options button{
    color: #fefefe;
    height: 50px;
    background-color: #ed1b24;
    border-radius: 12px;
    width: 140px;
    max-width: 80%;
    margin: 20px;
    cursor: pointer;
    transition: 0.6s;
}
.contentForm#select .section #options button:hover{
    background-color: #a92a31;
    transition: 0.6s;
}
@media (max-width: 320px) {
    .contentForm#select .section{
        width: 100%;
        height: 100%;
    }
    .contentForm#select .section #options{
        grid-auto-flow: row;
    }
}