#rollscontainer{
    flex-wrap: wrap;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.myrolls{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

button{
    padding: 8px 8px;
    border-radius: 10px;
    font-size: .5em;
    color: white;
    background-color: blue;
    font-family: Arial, Helvetica, sans-serif;
    transition: .2s;
}
button:hover{
     background-color: orange;
}
.label{
    font-size: 3em;
    color: blue;
}

h2{
    text-align: center;
    font-size: 2em;
    color: white;
    background-color: blue;
}
h3{
    
    font-size: 2em;
    font-family: Arial, Helvetica, sans-serif;
}

