html{
    background-color: rgb(30, 39, 50);
    color: darkorange;
}
body{
    background-color: rgb(30, 39, 50);
    color: darkorange;
}
input {
    background-color: rgb(30, 39, 50);
    color: darkorange;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
h1 {
    text-align: center;
}

.flex-container {
    margin-top: 20px;
    display: flex;
    flex-flow: row wrap;

    justify-content: space-around;
}

.flex-container p {
    text-align: center;
    text-wrap: auto;
    font-weight: bolder;
    color: darkorange;
}

.flex-item {
    min-width: 220px;
    max-width: 220px;
    min-height: 420px;
    max-height: 420px;
    border: 1px solid black;
    margin-bottom: 10px;
}

.row {
    max-width: 200px;
}
.icon-col {
    max-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
