* {
    box-sizing: border-box;
}

:root {}

body {
    background-color: black;
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    background-color: orange;
    color: black;
}

main {}

#radios {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

#radios div {
    width: calc((100% /6) - 1%);
    margin: 0.5%;
    color: orange;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(255, 165, 0, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255, 165, 0, 1);
    box-shadow: 0px 0px 5px 0px rgba(255, 165, 0, 1);
    text-align: center;
}

#radios div img {
    width: 100%;
    border-radius: 6px;
}

.boton{
    background-color: orange;
    color: black;
    border: 0px;
    padding: 5px;
    font-size: 1.2em;
    border-radius: 3px;
    margin-bottom: 8px;
}

.naranja2{
    color: orangered;
}